/* Theme Name: Guess Parent Custom
Author: Guess Solutions
Description: Custom Guess Parent
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
*/

/*
    ##RESET
    ##BASE
        #DEVICE-MEDIA-QUERIES
        #GLOBAL
        #DECORATION

*/

/* ===== ##RESET ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ===== ##BASE ===== */
html {
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 2.5rem;
}

h3, .h3 {
  font-size: 2rem;
}

h4, .h4 {
  font-size: 1.40625rem;
}

h5, .h5 {
  font-size: 1.171875rem;
}

h6, .h6 {
  font-size: 0.9375rem;
}

.display-1 {
    font-size: 3.5rem
}

.display-2 {
    font-size: 4rem;
}

.display-3 {
    font-size: 4.5rem;
}

/* ===== #DEVICE-MEDIA-QUERIES ===== */
/* 
  Device = Desktops
  Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1440px) {
    html {
        font-size: 20px;
    }
  }

/* 
  Device = Desktops
  Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) and (max-width: 1440px) {
  html {
      font-size: 18px;
  }
}
  
/* 
    Device = Laptops, Desktops
    Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
    html {
        font-size: 16px;
    }
}
  
/* 
    Device = Tablets, Ipads (portrait)
    Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
    html {
        font-size: 16px;
    }
}
  
/* 
    Device = Tablets, Ipads (landscape)
    Screen = B/w 768px to 1024px
 */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    html {
        font-size: 16px;
    }
}
  
/* 
    Device = Low Resolution Tablets, Mobiles (Landscape)
    Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
    html {
        font-size: 16px;
    }

}
  
/* 
    Device = Most of the Smartphones Mobiles (Portrait)
    Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
    html {
        font-size: 16px;
    }
}

/* ===== #GLOBAL ===== */
.container {
    margin: 0 auto;
    padding: 0;
    max-width: 1800px;
}

.flex-container {
    display: flex;
}

.flexwrap-container {
    display: flex;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    font-weight: 400;
    color: #373a3c;
    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.375rem 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-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, -webkit-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;
    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, -webkit-box-shadow 0.15s ease-in-out;
  }
  
  @media screen and (prefers-reduced-motion: reduce) {
    .button {
      -webkit-transition: none;
      transition: none;
    }
  }
  
  .button:hover {
    color: #373a3c;
    text-decoration: none;
  }
  
  
  .button.disabled, .btn:disabled {
    opacity: 0.65;
  }
  
  .button:not(:disabled):not(.disabled) {
    cursor: pointer;
  }
  
  a.button.disabled,
  fieldset:disabled a.btn {
    pointer-events: none;
  }

/* ===== #DECORATION STYLE ===== */
.text-center {
    text-align: center;
}

@media (max-width: 425px) {
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 1023px) and (min-width:426px) {
    .hide-tablet {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none;
    }
}