HEX
Server: Apache/2.4.62 (Debian)
System: Linux plxsite 6.8.0-47-generic #47-Ubuntu SMP PREEMPT_DYNAMIC Fri Sep 27 21:40:26 UTC 2024 x86_64
User: root (0)
PHP: 8.1.30
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/themes/polygant_2023/inc/css/style.scss
@import 'reset';
@import 'vars';
@import 'mixins';

 html, body {

    line-height: 130%;
    font-weight: 400;
    color: $color-dark;
}
.page-strtd.lang-ru ,   html .page-strtd.lang-ru , body .page-strtd.lang-ru
{font-family: 'Montserrat', sans-serif!important;

}
.page-strtd.lang-en ,  html .page-strtd.lang-en , body .page-strtd.lang-en{
		    font-family: 'Poppins', sans-serif;
}
html {
    font-size: 16px;

    @media (max-width: $breakpoint-xl) {
        font-size: 15px;
    }
    @media (max-width: $breakpoint-l) {
        font-size: 14px;
    }
    @media (max-width: $breakpoint-m) {
        font-size: 13px;
    }
    @media (max-width: $breakpoint-s) {
        font-size: 12px;
    }
    @media (max-width: $breakpoint-xs) {
        font-size: 11px;
    }
}

body {
    min-height: 100vh;
    position: relative;   
    background: $color-white;
    overflow-x: hidden;

    &.lock {
        overflow: hidden;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;

    @media (max-width: $breakpoint-xl) {
        max-width: 1180px;
    }
    @media (max-width: $breakpoint-l) {
        max-width: 960px;
    }
    @media (max-width: $breakpoint-m) {
        max-width: 700px;
    }
    @media (max-width: $breakpoint-s) {
        max-width: 100%;
        padding: 0 30px;
    }
    @media (max-width: $breakpoint-xs) {
        max-width: 100%;
        padding: 0 20px;
    }
}

@keyframes fade {
    from {
        opacity: 0
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-purple {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba($color-purple, 0.7);
    }
    
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse-blue {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba($color-blue, 0.7);
    }
    
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@import 'blocks/global/header';
@import 'blocks/frontpage/hero';
@import 'blocks/frontpage/services';
@import 'blocks/frontpage/cases';
@import 'blocks/frontpage/res';
@import 'blocks/frontpage/reviews';
@import 'blocks/frontpage/contact-us';
@import 'blocks/frontpage/blog';
@import 'blocks/global/footer';
@import 'blocks/global/popup';
@import 'blocks/global/sticky-btns';
@import 'blocks/info-page/info-page';
@import 'blocks/global/content';
@import 'blocks/category/category';