/*      Polygonium
 *      ©2026. All rights reserved.
 *      https://polygonium.com
 *      🎸 🤘
 */
:root {
    --grey-0: #0d0d0d;
    --grey-1: #1d1d1d;
    --grey-2: #262626;
    --grey-3: #4a4a4a;
    --grey-4: #c0c0c0;
    --grey-5: #fafafa;
    --pg-silver: #676767;
    --pg-silver-2: #939393;
    --pg-silver-3: #c5c5c5;
    --orange-0: #f4b13e;
}

body {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-size: 0.9em;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--grey-1);
    color: var(--grey-4);
}

body, html {
    height: 100%;
    margin: 0;
}

h1,
h2,
h3,
h4 {

    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

h5,
h6 {
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

h1 {
    font-size: 30px !important;
}

h2 {
    font-size: 20px !important;
}

h3 {
    font-size: 18px !important;
}

h4 {
    font-size: 16px !important;
}

section {
    padding: 60px 0;
}

#pg-hero-img, #pg-learn-more {
    padding: 0 !important;
}

a:link, a:visited {
    color: var(--pg-silver-3);
    text-align: center;
    text-decoration: none;
}

a.btn-learn-more:link, a.btn-learn-more:visited {
    color: var(--grey-0);
    text-align: center;
    text-decoration: none;
}

a:hover, a:active {
    color: var(--pg-silver);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: var(--grey-1);
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
    height: 70px;
}

#header .logo {
    margin: 0;
    padding: 0;
}

#header .logo img {
    max-height: 50px;
}

.scrolled-offset {
    margin-top: 70px;
}

@media (max-width: 768px) {
    #header .logo img {
        max-height: 40px;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: var(--grey-2);
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: var(--grey-4);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--orange-0);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--orange-0);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--grey-2);
    /*   box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);*/
    transition: 0.3s;
    /* width: 350px; */
}

.navbar .dropdown .apps-title {
    margin-left: 20px;
    font-weight: bold;
    font-size: 15px;
    color: var(--grey-4);
}

.navbar .dropdown ul li {
    min-width: 200px;
    margin-left: 23px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--orange-0);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}


/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: var(--grey-4);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--grey-1);

    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--grey-4);
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--orange-0);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 3px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--grey-1);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--orange-0);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #106eea;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #3284f1;
    color: #fff;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*
#hero
{

    height: 70%;
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-home
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../imgs/hero/Guitar-3D-Studio-by-Polygonium-ScreenShot-1.webp");
}

.no-webp .hero-home
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../imgs/hero/Guitar-3D-Studio-by-Polygonium-ScreenShot-1.jpg");
}

.hero-g3d-studio
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../imgs/hero/Guitar-3D-Studio-by-Polygonium-ScreenShot-2.webp");
}

.no-webp .hero-g3d-studio
{
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../imgs/hero/Guitar-3D-Studio-by-Polygonium-ScreenShot-2.jpg");
}


#hero .container
{
    position: relative;
    width: 50%;
}

#hero h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 56px;
    color: #efefef;
    font-family: "Inter", sans-serif;
    text-align: left;
}


#hero h1 span {
    color: #106eea;
}

@media (max-width: 768px)
{
    #hero
    {
        height: 40%;
        font-size: 20px;
        line-height: 36px;
    }
}
*/

.headline-img {
    width: 100%;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
}

.app-head-text {
    font-size: 20px !important;
    font-weight: bold !important;
}

.app-desc {
    font-size: 18px !important;
}

.pg-img {
    max-width: 135px !important;
}

.app-icon {
    max-width: 250px;
    max-height: 250px;
}

.pg-img-thumb {
    max-width: 80%;
}

.btn-learn-more:hover,
.btn-learn-more:focus {
    background-color: var(--grey-3) !important;
    border-color: var(--grey-3) !important;
}

.btn-learn-more,
.btn-learn-more:active,
.btn-learn-more:visited {
    background-color: var(--orange-0) !important;
    border-color: var(--orange-0) !important;

}

.btn-learn-more a:hover,
.btn-learn-more a:focus {
    color: var(--grey-4) !important;
}

.btn-learn-more a,
.btn-learn-more a:active,
.btn-learn-more a:visited {
    color: var(--grey-0) !important;
}


.inline-video {
    /*  position: absolute; */

    /*   z-index: 1; */

    max-height: 300px;
}

.inline-360 {
    position: absolute;

}

.inline-360-img {

    position: relative;
    min-width: 75px;

    left: -100px;
    top: -110px;


}

.pg-feature-text {
    position: relative;
    font-size: 30px;

}

.pg-review {
    border-radius: 20px;
    background: var(--grey-3);


}

/* --------------- Start Preloader --------------- */

.pace {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    pointer-events: none;
}

.pace .pace-progress {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 300px;
    position: fixed;
    z-index: 99999999999999;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #fff;
}

.pace.pace-inactive {
    width: 100vw;
    opacity: 0;
}

.pace.pace-inactive .pace-progress {
    max-width: 100vw;
}


#preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 9999999;
    pointer-events: none;
}

#preloader:after,
#preloader:before {
    content: "";
    position: fixed;
    left: 0;
    height: 50%;
    width: 100%;
    background: var(--grey-1);

    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader:before {
    top: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjIiIHZpZXdCb3g9IjAgMCAyMDAgOTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTEzOS4yMzIgMzMuNjNjMTUuOTYxLTEyLjU4OSAxOC45NDgtMjMuMTM3IDIwLjI3My0zMy44NTNsMi42MDMuMjUyYy0xLjQxNCAxMS40ODEtMy45NTQgMjIuNDk4LTE5LjcxOCAzNS40NDUgMTkuODc5IDEyLjA5OSAzOC42MzggMzIuMzY2IDU3LjQ3MSA1Mi4yLTE5LjA2NC0yMC4wODItMzguMzYxLTM5Ljk0LTU4LjcwNi01MS4xOTItNi41NiA1LjIxLTE1LjI3NCAxMC43MzYtMjYuOTA4IDE2LjczMS0yMy43NDcgMTIuMjM0LTQ1Ljk1MSAyMC40NjQtNjcuMzY5IDI3LjM4NCAzMy4yMTUtOS4zMDIgNjUuODU0LTE1LjMzOSA5NC44Ni0xMC4wODYgNDIuMDM0IDcuNjA3IDUwLjU2NSAxMy40NTEgNTguMTIzIDE3LjE2My03LjE3Mi0zLjUyNy0xNy41MTctNy40NTctNTguOTk3LTEzLjY3LTM1LjgxLTUuMzY1LTc4LjgxOCAyLjY4OS0xMjAuOTg0IDE0Ljk0NC00LjQwOSAxLjMzMS04Ljc5NSAyLjY1NS0xMy4xNzEgMy45OThsLTYuNzc1IDIuMWM0LjcxMS0xLjUwOCA5LjQ0LTMuMDI3IDE0LjE4NC00LjUzIDMxLjE5My0xMC4xNTUgNjIuNjkyLTIxLjkyNSA5OC40MzMtNDAuMzQyIDEwLjczMi01LjUyOSAxOC45NTItMTAuNjM2IDI1LjI2Ny0xNS40NS0yMi4yOTUtMTEuMjIyLTQ1Ljg4NC0xMS42NzYtNzEuODE5IDkuNDcxbC0xLjg0Ny0yLjNjMjcuNzYzLTIyLjY0NiA1Mi4xOTUtMjEuMTA1IDc1LjA4LTguMjY1eiIgZmlsbD0iIzk1OTU5NSIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center calc(50% - 50px);
    background-size: 100px;
}


#preloader:after {
    bottom: 0;
}

#preloader.isdone {
    visibility: hidden;
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

#preloader.isdone:after,
#preloader.isdone:before {
    height: 0;
    -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

.loading {
    position: fixed;
    left: 50%;
    top: calc(50% - 40px);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 10px;
    z-index: 9999999999;
}

.loading.isdone {
    top: 50%;
    opacity: 0;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.loading span {
    -webkit-animation: loading 1.4s infinite alternate;
    animation: loading 1.4s infinite alternate;
}

.loading span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.loading span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.loading span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loading span:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.loading span:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading span:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading span:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* --------------- End Preloader --------------- */


.carousel .carousel-item {
    color: #999;
    overflow: hidden;
    min-height: 120px;
    font-size: 13px;
}

.carousel .media {
    position: relative;
    padding: 0 0 0 5px;
}

.carousel .media img {
    width: 75px;
    height: 75px;
    display: block;
    border-radius: 50%;
}

.carousel .testimonial-wrapper {
    padding: 0 5px;
}

.carousel .testimonial {
    color: var(--grey-4);
    position: relative;
    padding: 10px;
    background: var(--grey-2);
    border: 1px solid var(--grey-3);
    border-radius: 3px;
    margin-bottom: 5px;
}

.carousel .testimonial::after {
    content: "";
    width: 15px;
    height: 15px;
    //display: block;
    background: var(--grey-2);
    border: 1px solid var(--grey-3);
    border-width: 0 0 1px 1px;
    position: absolute;
    top: -8px;
    left: 15px;
    transform: rotateZ(136deg);
}

.carousel .star-rating li {
    padding-right: 2px;
}

.carousel .star-rating i {
    font-size: 16px;
    color: #fac002;
}

.carousel .overview {
    padding: 3px 0 0 15px;
}

.carousel .overview .details {
    padding: 5px 0 8px;
}

.carousel .overview b {
    text-transform: uppercase;
    color: #1abc9c;
}

.carousel .carousel-indicators {
    bottom: -30px;
}

.carousel-indicators {

    list-style: none;
}

.carousel-indicators li, .carousel-indicators li.active {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    margin: 1px 2px;
    box-sizing: border-box;
    border: 5px !important;
}

.carousel-indicators li {
    background-color: var(--grey-3) !important;
    border: 4px solid var(--grey-3);
}

.carousel-indicators li.active {
    color: var(--grey-4) !important;
    background-color: var(--grey-3) !important;
    border: 5px double;
    border-color: var(--grey-3);
}


:root label.checkbox-bootstrap input[type=checkbox] {
    /* hide original check box */
    opacity: 0;
    position: absolute;
    /* find the nearest span with checkbox-placeholder class and draw custom checkbox */
    /* draw checkmark before the span placeholder when original hidden input is checked */
    /* disabled checkbox style */
    /* disabled and checked checkbox style */
    /* when the checkbox is focused with tab key show dots arround */
}

:root label.checkbox-bootstrap input[type=checkbox] + span.checkbox-placeholder {
    width: 14px;
    height: 14px;
    border: 1px solid;
    border-radius: 3px;
    /*checkbox border color*/
    border-color: #737373;
    display: inline-block;
    cursor: pointer;
    margin: 0 7px 0 -20px;
    vertical-align: middle;
    text-align: center;
}

:root label.checkbox-bootstrap input[type=checkbox]:checked + span.checkbox-placeholder {
    background: var(--grey-2);
}

:root label.checkbox-bootstrap input[type=checkbox]:checked + span.checkbox-placeholder:before {
    display: inline-block;
    position: relative;
    vertical-align: text-top;
    width: 5px;
    height: 9px;
    /*checkmark arrow color*/
    border: solid var(--pg-silver-2);
    border-width: 0 2px 2px 0;
    /*can be done with post css autoprefixer*/
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
}

:root label.checkbox-bootstrap input[type=checkbox]:disabled + span.checkbox-placeholder {
    background: #ececec;
    border-color: #c3c2c2;
}

:root label.checkbox-bootstrap input[type=checkbox]:checked:disabled + span.checkbox-placeholder {
    background: #d6d6d6;
    border-color: #bdbdbd;
}

:root label.checkbox-bootstrap input[type=checkbox]:focus:not(:hover) + span.checkbox-placeholder {
    outline: 1px dotted black;
}

:root label.checkbox-bootstrap.checkbox-lg input[type=checkbox] + span.checkbox-placeholder {
    width: 26px;
    height: 26px;
    border: 2px solid;
    border-radius: 5px;
    /*checkbox border color*/
    border-color: #737373;
}

:root label.checkbox-bootstrap.checkbox-lg input[type=checkbox]:checked + span.checkbox-placeholder:before {
    width: 9px;
    height: 15px;
    /*checkmark arrow color*/
    border: solid var(--pg-silver-2);
    border-width: 0 3px 3px 0;
}


.pg-footer {
    margin-top: 60px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2px;
    margin-bottom: 0;
    list-style: none;
    align-items: center;

}

.footer-links li {
    padding: 0 8px;
}

.footer-links li a {
    color: var(--grey-4);
    text-decoration: none;
}

.footer-links li a:hover {
    color: var(--grey-5);
}

.footer-social li {
    width: 30px;
    height: 30px;
    padding: 0 20px 4px;
    margin-bottom: 0;
    justify-content: center;
    font-size: 20px;
}

.footer-line {
    width: 100%;
    margin: auto;
}

.hr-line {
    width: 80%;
    margin: auto;
}

.pg-copyright {
    color: var(--grey-4);
    padding-bottom: 30px;
}

.pg-header-title {
    font-size: 28pt !important;
}

.pg-my-0 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.pg-my-1 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.pg-my-2 {
    margin-top: 200px;
    margin-bottom: 200px;
}

.pg-ss-ts {
    margin-top: 75px !important;
}

.pg-mt-0 {
    margin-top: 20px;
}

.pg-mt-1 {
    margin-top: 100px;
}

.pg-mt-2 {
    margin-top: 200px;
}

.pg-mb-1 {
    margin-bottom: 100px;
}

.pg-mb-2 {
    margin-bottom: 200px;
}

.pg-mtt-1 {
    margin-top: -30px !important;
}

.email-input {
    width: 80vw;
    max-width: 400px;
    padding: 0.75rem;
    border: 1px solid var(--pg-silver);
    border-radius: 10px;
    background-color: var(--grey-2);
    color: var(--pg-silver-2);
    font-size: 18px;
    margin-bottom: 20px;
}

.email-checkbox {
    border: 1px solid var(--pg-silver);
    border-radius: 10px;
    background-color: var(--grey-2);
    color: var(--pg-silver-2);
    margin-bottom: 20px;
}


@media (max-width: 991px) {
    h5 {
        font-size: 18px;
    }

    .app-icon {
        max-width: 200px;
    }

    .pg-img-thumb {
        max-width: 95%;
    }

    .footer-social li {
        font-size: 20px !important;
    }

    .footer-line {
        width: 80%;
    }


}

.platform-icons {
    color: var(--grey-4);
    font-size: 16px !important;
}

.footer-pg-logo
{
    color: var(--grey-4);
    filter: invert(50%);
}

/* reviews */

.list-inline-item:not(:last-child) {
    margin-right: 0;
}


#pgCarousel {
    min-height: 370px;
}


@media (min-width: 375px) {
    #pgCarousel {
        min-height: 350px;
    }
}

@media (min-width: 425px) {
    #pgCarousel {
        min-height: 320px;
    }
}

@media (min-width: 768px) {
    #pgCarousel {
        min-height: 200px;
    }
}

@media (min-width: 1024px) {
    #pgCarousel {
        min-height: 180px;
    }
}