/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-font: "Montserrat", sans-serif;
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --primary-color: #c1121f;
}

html {
    scroll-behavior: smooth;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    background: var(--bg-white);
    color: var(--black);
    padding-top: 90px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--primary-color); 
    text-align: center; 
    font-size: 16px;
    color: var(--white);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    z-index: 8888;    
}

.scrolltotop i {
    color: var(--white);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 9px;
    left: -6px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primary-color); 
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/*=== Header area start ===*/

.header-area {
    padding: 30px 0 25px;
    background: #000;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header-area .container {
    max-width: 1590px;
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
}

.header-logo a:hover {
    color: #c1121f;
}

.header-navigation-link ul {
    display: flex;
    align-items: center;
}

.header-navigation-link ul li a {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin-left: 30px;
}

.header-navigation-link ul li a:hover {
    color: #c1121f;
}

.hamburger {
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: #fff;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.hamburger span:nth-of-type(2) {
    margin: 6px 0;
}

.hamburger:hover span {
    background: #c1121f;
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: #000; 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo img {
    max-width: 100%;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: #fff;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
}

.side-menu-logo .close:hover span {
    background: #c1121f;
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-link ul {
    flex-direction: column;
    align-items: start;
}

.side-menu-link ul li a {
    margin: 0 0 15px;
}

/*=== main content start ===*/

.main-content {
    overflow: hidden;
}

.banner-area {
    background-image: url(../images/banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 440px 0 770px;
}

.banner-item {
    max-width: 1200px;
    margin: 0 auto;
}

.banner-item h2 {
    font-size: 82px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 9;
}

.banner-item h2::after {
    content: 'ROSSI MCKEE';
    position: absolute;
    font-size: 93px;
    font-weight: 600;
    color: rgba(91, 63, 45, 0.6);

    top: 30px;
    left: -40px;
    z-index: -1;
}

/*=== deserve area start ===*/

.deserve-top {
    background-image: url(../images/deserve-01.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 65px 100%;
    padding: 160px 0;
}

.deserve-item p {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    text-align: justify;
    line-height: 39px;
}

.deserve-item p span {
    font-size: 33px;
    font-style: italic;
    display: block;
    margin-top: 30px;
}

.deserve-bottom {
    padding: 30px 0;
    background-color: #c9a227;
}

.deserve-item-second p {
    font-size: 23px;
    font-weight: 400;
    color: #000;
    text-align: justify;
    line-height: normal;
}

.deserve-item-second p span {
    font-weight: 600;
}

/*=== bulgaria area start ===*/

.bulgaria-area {
    background-image: url(../images/bulgaria-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0 125px;
}

.bulgaria-item h2 {
    font-size: 85px;
    font-weight: 600;
    color: #000;
    letter-spacing: -1.1px;
    margin-bottom: 50px;
}

.bulgaria-item p {
    font-size: 23px;
    font-weight: 400;
    color: #000;
    line-height: normal;
}

.bulgaria-item p strong {
    font-weight: 600px;
}

.bulgaria-item p:first-of-type {
    margin-bottom: 20px;
}

.bulgaria-item ul li {
    font-size: 23px;
    font-weight: 400;
    color: #000;
    line-height: normal;
}

/*=== hunters area start ===*/

.hunters-area {
    background-image: url(../images/hunters-01.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: calc(100% - 10px) center;
    padding: 80px 0 110px;
    background-color: #0a2342;
}

.hunters-item h2 {
    font-size: 85px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 90%;
    margin-bottom: 45px;
}

.hunters-item h2 span {
    font-weight: 400;
    color: #7BB3FF;
    display: block;
}

.hunters-item p,
.hunters-item ul li {
    color: #fff;
}

/*=== idea area start ===*/

.idea-area {
    padding-top: 50px;
}

.idea-item img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
}

.idea-item h2 {
    font-size: 85px;
    font-weight: 600;
    color: #C9A227;
    text-align: center;
    line-height: 100%;
    margin-bottom: 50px;
}

.idea-bottom {
    padding: 20px 0;
    text-align: center;
    background-color: #0a2342;
    margin-top: 50px;
}

.idea-bottom p {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 26px;
}

.idea-bottom p span {
    font-size: 41px;
    color: #C1121F;
}

/*=== culture area start ===*/

.culture-area {
    background-image: url(../images/culture-01.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    padding: 50px 0 100px;
}

.culture-area .idea-item h2 {
    color: #0A2342;
}

.culture-area .idea-item h2 span {
    font-weight: 400;
    color: #C9A227;
    display: block;
}

/*=== patronage area start ===*/

.patronage-area {
    background-image: url(../images/patronage-01.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 70px bottom;
    background-color: #7bb3ff;
    padding: 60px 0 50px;
}

.patronage-area .idea-item h2 {
    color: #fff;
}

.patronage-area .bulgaria-item ul li {
    margin-bottom: 10px;
}

/*=== communities area start ===*/

.communities-area {
    background-image: url(../images/communities-01.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0 calc(100% - 130px);
    padding: 40px 0 70px;
}

.communities-area .idea-item h2 span {
    color: #0A2342;
}

/*=== possibilities area start ===*/

.possibilities-area {
    background-image: url(../images/possibilities-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0 80px;
}

.possibilities-area .idea-item img {
    margin-bottom: 30px;
}

.possibilities-area .idea-item h2 {
    color: #0A2342;
}

.possibilities-area .idea-item h2 strong {
    font-weight: 400;
    color: #ffff;
    display: block;
}

.possibilities-area .bulgaria-item p {
    color: #fff;
}

/*=== leadership area start ===*/

.leadership-area {
    background-image: url(../images/leadership-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    padding: 100px 0 110px;
}

.leadership-area .idea-item h2 {
    color: #fff;
}

.leadership-area .idea-item h2 span {
    color: #7BB3FF;
    font-weight: 400;
    display: block;
}

.leadership-area .bulgaria-item p {
    color: #fff;
    margin-bottom: 20px;
}

/*=== strength area start ===*/

.strength-area {
    padding: 25px 0 15px;
    background-color: #c1121f;
}

.strength-item p {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: normal;
}

/*=== education area start ===*/

.education-area {
    padding: 90px 0 140px;
}

.education-area .idea-item h2 {
    color: #0A2342;
    margin-bottom: 60px;
}

/*=== footer area start ===*/

.footer-area {
    padding: 32px 0;
    background-color: #000;
}

.footer-item h2 {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}