@import url('css/bootstrap.min.css');
@import url('https://use.fontawesome.com/releases/v6.2.0/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&family=Playfair+Display:wght@900&display=swap');

:root {
    --main100: hsl(350,63%,31%);
    --main300: hsl(350,72%,43%);
    --main500: hsl(350,100%,56%);
    --main700: hsl(350,91%,76%);
    --main900: hsl(350,100%,96%);
    
    --blue100: hsl(225,63%,31%);
    --blue300: hsl(225,72%,43%);
    --blue500: hsl(226,81%,56%); /* #345eea */
    --blue700: hsl(225,91%,76%);
    --blue900: hsl(225,100%,96%);
    
    --grey100: hsl(225,0%,31%);
    --grey300: hsl(225,0%,43%);
    --grey500: hsl(226,0%,56%);
    --grey700: hsl(225,0%,76%);
    --grey900: hsl(225,0%,96%);
    
    --green100: hsl(166,56%,15%);
    --green300: hsl(164,52%,32%);
    --green500: hsl(162,48%,49%);
    --green700: hsl(165,74%,72%);
    --green900: hsl(167,100%,95%);
    
    --red100: hsl(352,60%,22%);
    --red300: hsl(352,65%,43%);
    --red500: hsl(353,70%,58%);
    --red700: hsl(351,73%,77%);
    --red900: hsl(350,76%,95%);
    
    --yellow100: hsl(46,72%,27%);
    --yellow300: hsl(45,82%,49%);
    --yellow500: hsl(44,93%,72%);
    --yellow700: hsl(46,97%,84%);
    --yellow900: hsl(47,100%,95%);
    
    --pink100: hsl(342,100%,23%);
    --pink300: hsl(6,55%,60%);
    --pink500: hsl(6,42%,60%);
    --pink700: hsl(4,42%,80%);
    --pink900: hsl(7,43%,92%);
    
    --white: #fff;
    --black: #111;
}

/*COLORES*/

.main100 {color: var(--main100);}
.main300 {color: var(--main300);}
.main500 {color: var(--main500);}
.main700 {color: var(--main700);}
.main900 {color: var(--main900);}
    
.blue100 {color: var(--blue100);}
.blue300 {color: var(--blue300);}
.blue500 {color: var(--blue500);}
.blue700 {color: var(--blue700);}
.blue900 {color: var(--blue900);}

.grey100 {color: var(--grey100);}
.grey300 {color: var(--grey300);}
.grey500 {color: var(--grey500);}
.grey700 {color: var(--grey700);}
.grey900 {color: var(--grey900);}

.green100 {color: var(--green100);}
.green300 {color: var(--green300);}
.green500 {color: var(--green500);}
.green700 {color: var(--green700);}
.green900 {color: var(--green900);}

.red100 {color: var(--red100);}
.red300 {color: var(--red300);}
.red500 {color: var(--red500);}
.red700 {color: var(--red700);}
.red900 {color: var(--red900);}

.yellow100 {color: var(--yellow100);}
.yellow300 {color: var(--yellow300);}
.yellow500 {color: var(--yellow500);}
.yellow700 {color: var(--yellow700);}
.yellow900 {color: var(--yellow900);}

.pink100 {color: var(--pink100);}
.pink300 {color: var(--pink300);}
.pink500 {color: var(--pink500);}
.pink700 {color: var(--pink700);}
.pink900 {color: var(--pink900);}
    
.white {color: var(--white);}
.black {color: var(--black);}

html {
    position: relative;
    min-height: 100%;
}

body {
	background: var(--white);
	font-family: 'Oxygen', serif;
	color: var(--black);
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.6;
}

p {
    font-family: 'Oxygen', serif;
    padding-top: 10px;
}


.bold700 {
    font-weight: 700;
}

img {
    max-width: 100%;
}

.container {
    padding-left:0px;
    padding-right:0px;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid var(--blue700);
}

.xxl, .xl {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
}

.large {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
}

.medium {
    font-size: 22px;
}

.standard {
    font-size: 16px;
}

.small {
    font-size: 13px;
}

.underline {
    border-bottom: 1px solid var(--black);
}

.truncatext {
    display: block;
    white-space: nowrap;
    /* forces text to single line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.leftmov {
    text-align: left;
}
    
.centermov {
    text-align: center;
}

.indexopiniones {
    background-color: var(--blue500);
    margin-top: 0px;
}

em {
    font-size: 14px;
    color: var(--grey500);
}

/*FONT AWESOME*/
.fa-padding-left {
    padding-left: 10px;
}

.fa-padding-right {
    padding-right: 10px;
}

/* HERO */

.herotext {
    margin: -210px 15px 40px !important;
    background-color: #ffffffe0;
}

.CodeMirror {
	height: 500px !important;
}

/* header */

.header {
  background-color: rgba(255,255,255,0.95);
  /*box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);*/
    border-bottom: 1px solid var(--black);
  position: sticky;
    top: 0;
  width: 100%;
  z-index: 999;
    height: 50px;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: rgba(255,255,255,0.95);
}

.header li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
}

.header .logo {
  display: block;
  float: left;
  color: var(--black);
    font-size: 25px;
    padding: 3px 15px;
  text-decoration: none;
    font-family: 'Playfair Display', serif;
    
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
    background-color: rgba(255,255,255,0.95);
    text-align: center;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 22px;
  position: relative;
  user-select: none;
        margin-bottom: 0px;
}

.header .menu-icon .navicon {
  background: var(--black);
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: var(--black);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 500px;
    padding: 20px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.btn-navbar {
    padding: 7px 16px !important;
}

/* 48em = 768px */

@media (min-width: 1000px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 12px 20px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: 50px;
      
  }
  .header .menu-icon {
    display: none;
  }
}

/*NAVBAR*/

.navbar {
    background-color: #fff;
    box-shadow: 0 3px 15px hsla(0, 0%, 0%, 0.06);
}

.navbar-brand > a:active, a:focus {
    background-color: transparent !important;
}

.navbar-right {
    margin: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

.navbar-toggle {
    padding-bottom: 0px;
    margin: 4px 15px;
    z-index: 1000;
}

.navbar-collapse {
    padding: 0px 30px 30px;
}

.navbar-brand {
    width: 100%;
    margin-left: -10px;
    position: absolute;
    padding: 0px;
    height: 0px;
}



/*BOTONES*/
.btn {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px !important;
    min-width: 123px;
    color: #161C2D;
    text-align: center;
    vertical-align: middle;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.8125rem 1.25rem;
    line-height: 1.6;
    border-radius: 5px;
        -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }


.btn-black {
    background-color: var(--black) !important;
    color: var(--white) !important; 
    border: 2px var(--black) solid;
    box-shadow: none !important;
    border-radius: 0px !important;
    }
.btn-black:hover, .btn-black:focus, .btn-black:active , .btn-black.active {
    background-color: var(--grey100) !important;
    color: var(--white) !important; 
    border: 2px var(--grey100) solid;
    box-shadow: none !important;
    border-radius: 0px !important;
}

.btn-black-line {
    background-color: var(--white) !important;
    color: var(--black) !important; 
    border: 2px var(--black) solid;
    box-shadow: none !important;
    border-radius: 0px !important;
    }
.btn-black-line:hover, .btn-black-line:focus, .btn-black-line:active , .btn-black-line.active {
    background-color: var(--black) !important;
    color: var(--white) !important; 
    border: 2px var(--black) solid;
    box-shadow: none !important;
    border-radius: 0px !important;
}


.w100 {
    width: 100%;
}

.brandname {
    font-size: 25px;
    color: var(--black);
    font-family: 'Playfair Display', serif;
    text-align: left;
    padding: 14px 0px 0px 20px;
}

/*Honey pot*/
.apellidos {
    display: none;
}

swiper-slide {
    margin-bottom: 40px;
}


.panelnew {
    border-top: 3px solid var(--blue500);
    border-radius: 5px;
    background-color: #fff;
    padding: 10px 25px;
    box-shadow: 0 10px 20px hsla(0, 0%, 0%, 0.1);
    margin-bottom: 10px;
}

.panelayuda {
    color: var(--blue300);
    border-radius: 5px;
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 10px 20px hsla(0, 0%, 0%, 0.1);
    margin: 15px 10px;
    text-align: center;
}

.panelreview {
    color: var(--blue300);
    border-radius: 5px;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 10px 20px hsla(0, 0%, 0%, 0.1);
    margin: 5px;
}


.form-horizontal .form-group {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.form-group {
    margin-bottom: 10px;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: var(--blue900);
}

.form-control:focus {
    border-color: var(--grey500);
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(0 0 0 / 20%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(0 0 0 / 20%);
}

.form-control {
    height: 45px;
    border: 2px solid var(--black);
    border-radius: 0px;
}

.center {
    text-align: center;
}

/* MATERIALIZE */
.new-form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 5px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--black);
    background-color: transparent;
    background-image: none;
    border: 0px;
    border-bottom: 1px solid var(--black);

    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

.new-form-control:focus {
    outline: 0;
    border: 0px;
    border-bottom: 2px solid var(--black);
}

.new-form-control[disabled],
.new-form-control[readonly],
fieldset[disabled] .new-form-control {
    color: var(--black);
    border-bottom: 1px solid var(--black);
}

textarea.new-form-control.extend:focus {
    height: 200px;
}

textarea.new-form-control {
    height: 100%;
}

.new-label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 80%;
    color: var(--black);
}

.helper-text {
    position: relative;
    min-height: 18px;
    font-size: 12px;
    color: var(--pink300);
    padding-top: 5px;
    line-height: 1.4;
}

.helper-text::after {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
}


/* BLOG */

.blog {
    color: var(--black);
}

.blog a {
    font-weight: 500;
    border-bottom: 0px solid var(--pink500);
}

.blog p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog h1 {
    text-align: center;
    padding: 30px 25px !important;
    line-height: 1.35;
    font-weight: 700;
}

.blog h2 {
    margin-bottom: 23px;
    line-height: 1.5;
    padding-top: 30px;
    font-size: 23px;
    font-weight: 700;
}

.blog h3 {
    margin-bottom: 23px;
    line-height: 1.5;
    font-size: 18px;
}

.blog img {
    width: 100%;
}

.blog blockquote {
    background-color: var(--pink900);
    border-left: 5px solid var(--pink500);
    padding: 10px 20px 20px;
    font-size: inherit;
}

.blog .fuente {
    background-color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}






/* Checkboxes
   ========================================================================== */
/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[type="checkbox"] {
  /* checkbox aspect */
}

[type="checkbox"] + span:not(.lever) {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  height: 18px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[type="checkbox"] + span:not(.lever):before,
[type="checkbox"]:not(.filled-in) + span:not(.lever):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #000;
  border-radius: 1px;
  margin-top: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

[type="checkbox"]:not(.filled-in) + span:not(.lever):after {
  border: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

[type="checkbox"]:not(:checked):disabled + span:not(.lever):before {
  border: none;
  background-color: rgba(0, 0, 0, 0.42);
}

[type="checkbox"].tabbed:focus + span:not(.lever):after {
  -webkit-transform: scale(1);
          transform: scale(1);
  border: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"]:checked + span:not(.lever):before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid var(--pink300);
  border-bottom: 2px solid var(--pink300);
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"]:checked:disabled + span:before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  border-bottom: 2px solid rgba(0, 0, 0, 0.42);
}

/* Indeterminate checkbox */
[type="checkbox"]:indeterminate + span:not(.lever):before {
  top: -11px;
  left: -12px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid #26a69a;
  border-bottom: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"]:indeterminate:disabled + span:not(.lever):before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  background-color: transparent;
}

[type="checkbox"].filled-in + span:not(.lever):after {
  border-radius: 2px;
}

[type="checkbox"].filled-in + span:not(.lever):before,
[type="checkbox"].filled-in + span:not(.lever):after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  -webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}

[type="checkbox"].filled-in:not(:checked) + span:not(.lever):before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
          transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0;
}

[type="checkbox"].filled-in:checked + span:not(.lever):before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
          transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:checked + span:not(.lever):after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #26a69a;
  background-color: #26a69a;
  z-index: 0;
}

[type="checkbox"].filled-in.tabbed:focus + span:not(.lever):after {
  border-radius: 2px;
  border-color: #5a5a5a;
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"].filled-in.tabbed:checked:focus + span:not(.lever):after {
  border-radius: 2px;
  background-color: #26a69a;
  border-color: #26a69a;
}

[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):before {
  background-color: transparent;
  border: 2px solid transparent;
}

[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):after {
  border-color: transparent;
  background-color: #949494;
}

[type="checkbox"].filled-in:disabled:checked + span:not(.lever):before {
  background-color: transparent;
}

[type="checkbox"].filled-in:disabled:checked + span:not(.lever):after {
  background-color: #949494;
  border-color: #949494;
}

.panel {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.footer {
	background-color: var(--black);
	color:var(--blue900);
}


.panel-heading {
    padding: 10px 20px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background-color: var(--black);
    margin-top: 10px;
}

.panel-collapse {
    background-color: var(--white);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 10px 10px;
}

.panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 0px solid var(--pink700);
}

.opinionindex{
        font-size: 22px;
    }


.list-group-button {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #f1f1f1;
    border: 1px solid #f2f2f2;
    text-align: center;
    border-radius: 6px; 
    -moz-border-radius: 6px; 
    -webkit-border-radius: 6px;
}

a.list-group-button:hover,
a.list-group-button:focus {
    text-decoration: none;
    background-color: #ddd;
}

a.anchor {
    position: absolute;
    margin: -50px;
}


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

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


.footer a {
    color: var(--pink500);
  text-decoration: none;
}

.footer a:hover, .footer a:focus {
    color: var(--pink300);
  text-decoration: none;
}

a.footer {
  color: var(--pink500);
  text-decoration: none;
}


a.footer:hover,
a.footer:focus{
  color: #4e4e4e;
  text-decoration: none;
}

a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}



.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-right: 5px;
  padding-left: 5px;
}

.list-group {
	margin-bottom:8px;
}


h1,.h1 {
    font-size: 33px;
    font-weight: 900;  
    line-height: 1.4;
}
h2,.h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
}
h3,.h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}
h4,.h4 {
    font-size: 16px;
    font-weight: 700;   
}
h5,.h5 {
    font-size: 13px;
    font-weight: 300;
}
h6,.h6 {
    font-size: 10px;
    font-weight: 300;
}

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

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}



.custom-file-upload {
    background-color: var(--grey900);
    color: var(--black);
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 16px 12px;
    cursor: pointer;
    font-weight: 400;
    border-radius: 5px;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 
/*---------------------------------------------------------------[ SCREEN SIZE 480PX ]-----------------------------------------------------------------------*/ 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 
@media screen and (min-width : 480px)
{
    .container {
        padding-bottom:0px;
    }
    
    h1,.h1 {
        font-size: 35px;
        font-weight: 700;    
    }
    h2,.h2 {
        font-size: 28px;
        font-weight: 500;
    }
    h3,.h3 {
        font-size: 20px;
        font-weight: 400;
    }
    h4,.h4 {
        font-size: 15px;
        font-weight: 700;   
    }
    
    h5,.h5 {
        font-size: 12px;
        font-weight: 300;
    }
    h6,.h6 {
        font-size: 10px;
        font-weight: 300;
    }

    
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 
/*---------------------------------------------------------------[ SCREEN SIZE 768PX ]-----------------------------------------------------------------------*/ 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 

@media screen and (min-width : 768px)
{

    
    .panel-title {
        font-size: 25px;
    }

    .top-image {
        padding-top: 40px;
    }
        
    .footer {
        text-align: left;
    }
    
    h1,.h1 {
        font-size: 35px;
        font-weight: 700;    
    }
    h2,.h2 {
        font-size: 30px;
        font-weight: 500;
    }
    h3,.h3 {
        font-size: 20px;
        font-weight: 400;
    }
    h4,.h4 {
        font-size: 15px;
        font-weight: 700;   
    }
    h5,.h5 {
        font-size: 12px;
        font-weight: 300;
    }
    h6,.h6 {
        font-size: 12px;
        font-weight: 300;
    }
    
    .w100 {
        width: unset;
    }
    
    .leftmov {
        text-align: center;
    }
    
    .centermov {
        text-align: left;
    }
    
    
    
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 
/*---------------------------------------------------------------[ SCREEN SIZE 992PX ]-----------------------------------------------------------------------*/ 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 

@media screen and (min-width : 992px)
{

    .xxl {
    font-size: 40px;
    } 
    
    h1,.h1 {
        font-size: 35px;
        font-weight: 700;    
    }
    
    h2,.h2 {
        font-size: 35px;
        font-weight: 500;
    }
    h3,.h3 {
        font-size: 20px;
        font-weight: 400;
    }
    h4,.h4 {
        font-size: 16px;
        font-weight: 700;   
    }
    h5,.h5 {
        font-size: 14px;
        font-weight: 300;
    }
    h6,.h6 {
        font-size: 12px;
        font-weight: 300;
    }    
    
    .herotext {
        margin: -950px 20px 20px !important;
        background-color: #fff;
    }
    
    .header .menu {
        background-color: transparent;
    }
    
}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 
/*---------------------------------------------------------------[ SCREEN SIZE 1200PX ]-----------------------------------------------------------------------*/ 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 

@media screen and (min-width : 1200px)
{

    .xxl {
    font-size: 45px;
    }
    
    .xl {
    font-size: 40px;
    }
    
    .large {
    font-size: 33px;
    }

    
    h1,.h1 {
        font-size: 40px;
        font-weight: 700;    
    }
    h2,.h2 {
        font-size: 35px;
        font-weight: 500;
    }
    h3,.h3 {
        font-size: 20px;
        font-weight: 400;
    }
    h4,.h4 {
        font-size: 15px;
        font-weight: 700;   
    }
    h5,.h5 {
        font-size: 15px;
        font-weight: 300;
    }
    h6,.h6 {
        font-size: 12px;
        font-weight: 300;
    }


}

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 
/*---------------------------------------------------------------[ SCREEN SIZE 1600PX ]-----------------------------------------------------------------------*/ 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 

@media screen and (min-width : 1600px)
{
    
}
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 
/*---------------------------------------------------------------[ COLLAPSE NAVBAR ]-----------------------------------------------------------------------*/ 
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*/ 


@media (max-width: 991px) {
    
    .brandname {
        text-align: center;
    }
    
  .navbar-header {
      float: none;
  }
  .navbar-left,.navbar-right {
      float: none !important;
  }
  .navbar-toggle {
      display: block;
  }
  .navbar-collapse {
      border-top: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .navbar-fixed-top {
      top: 0;
      border-width: 0;
  }
  .navbar-collapse.collapse {
      display: none!important;
  }
  .navbar-nav {
      float: none!important;
      margin-top: 7.5px;
  }
  .navbar-nav>li {
      float: none;
  }
  .navbar-nav>li>a {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .collapse.in{
      display:block !important;
  }
}
