@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/Mona-Sans-Bold.eot');
    src: url('../fonts/Mona-Sans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mona-Sans-Bold.woff2') format('woff2'),
        url('../fonts/Mona-Sans-Bold.woff') format('woff'),
        url('../fonts/Mona-Sans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/Mona-Sans-ExtraBold.eot');
    src: url('../fonts/Mona-Sans-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mona-Sans-ExtraBold.woff2') format('woff2'),
        url('../fonts/Mona-Sans-ExtraBold.woff') format('woff'),
        url('../fonts/Mona-Sans-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/Mona-Sans-Medium.eot');
    src: url('../fonts/Mona-Sans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mona-Sans-Medium.woff2') format('woff2'),
        url('../fonts/Mona-Sans-Medium.woff') format('woff'),
        url('../fonts/Mona-Sans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/Mona-Sans-Light.eot');
    src: url('../fonts/Mona-Sans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mona-Sans-Light.woff2') format('woff2'),
        url('../fonts/Mona-Sans-Light.woff') format('woff'),
        url('../fonts/Mona-Sans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-ExtraLight.eot');
    src: url('../fonts/MonaSans-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MonaSans-ExtraLight.woff2') format('woff2'),
        url('../fonts/MonaSans-ExtraLight.woff') format('woff'),
        url('../fonts/MonaSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/Mona-Sans-SemiBold.eot');
    src: url('../fonts/Mona-Sans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mona-Sans-SemiBold.woff2') format('woff2'),
        url('../fonts/Mona-Sans-SemiBold.woff') format('woff'),
        url('../fonts/Mona-Sans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/Mona-Sans-Regular.eot');
    src: url('../fonts/Mona-Sans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mona-Sans-Regular.woff2') format('woff2'),
        url('../fonts/Mona-Sans-Regular.woff') format('woff'),
        url('../fonts/Mona-Sans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mona-Sans';
    src: url('../fonts/Mona-Sans-UltraLight.eot');
    src: url('../fonts/Mona-Sans-UltraLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mona-Sans-UltraLight.woff2') format('woff2'),
        url('../fonts/Mona-Sans-UltraLight.woff') format('woff'),
        url('../fonts/Mona-Sans-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}


/*=========== POWERED BY MERIDIAN SOLUTIONS INC ============*/


/*************** DEFAULT CSS ***************/
:root {
    --body-font: 'Mona-Sans';
    --body-font-Size: 16px;
    --body-color: #000;
    --primary-color: #782529;
    --secondary-color:#c19420  ;
    --black: #000;
    --white: #fff;
    --grey: #f2f2f2;
    --peach:#fdfaea;
    --yellow:#fde428;
    --heading-font: 'Mona-Sans';
}
body{
    
    font-family: var(--body-font);
    font-size:var(--body-font-Size);
    font-style: normal;
    line-height: normal;
    font-weight:400;
    color: var(--body-color);
    text-decoration: none;
    margin:0px;
    -webkit-font-smoothing: antialiased;
    padding:0;
    
}
body.russian-lang{font-family: "Roboto", serif;}

html{ scroll-behavior: smooth;}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
::selection {
    background: var(--primary-color); /* Safari */
    color:#fff;
        }
::-moz-selection {
    background: var(--primary-color); /* Firefox */
    color:#fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  padding:1px ;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 40px;
}

a {
    color:var(--body-color);
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    }
    a:hover {
    color: var(--primary-color);
    }

p {
    margin:0px 0 30px 0;
    clear:left;
    padding:0;
    font-weight: normal;
    line-height: 27px;
    }
h1, h2, h3, h4, h5, h6 {
    margin:0 0 20px 0;
    padding:0;
    font-weight:normal;
    
    }
    h2{
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 10px
    }
  
hr {
    margin:30px  0 30px 0;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    position:relative;
}

img{
    border:0;
     -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    
}   
a img {
    border: 0;
    }

/*-----------text styles------------*/
.text-white{
    color:var(--white)!important;
}
.text-black{
    color: #000  !important;
}
.text-brown{
    color: var(--primary-color) !important;
} 
.text-yellow{
    color: var(--secondary-color) !important;
} 
.text-center{ text-align: center; }
.text-justify{ text-align: justify; }
.uppercase{text-transform: uppercase;}
/*-----------background styles------------*/
.bg-red{background-color: var(--primary-color)}
.bg-yellow{background-color: var(--secondary-color)}
.bg-grey{background-color: var(--grey)}
.bg-peach{background-color: var(--peach)}
/*************** PRELOADER ***************/
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* change if the mask should have another color then white */
    z-index:999999; /* makes sure it stays on top */
}
#status {
    width:100%;
    height:100%;
    position:absolute;
    left:0; /* centers the loading animation horizontally one the screen */
    top:0; /* centers the loading animation vertically one the screen */
    background-image:url(../images/loading.png); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:0; /* is width and height divided by two */
}
#status{
/* -webkit-animation: flipInY 1s infinite alternate;
  -moz-animation: flipInY 1s infinite alternate;
  -ms-animation: flipInY 1s infinite alternate;
  -o-animation: flipInY 1s infinite alternate;
  animation: flipInY 1s infinite alternate;*/
    }
/*************** BACK TO TOP ***************/

/*************** COLUMS AND ROWS ***************/
main{
    position:relative;
    }

.container{
    width:1494px;
    margin:0 auto;
}
.fullwidth{
    width:100%;
    display:block;
}
.two-col{
    width: 46%;
    margin-right: 8%;
}
.three-col{
    width:30%;
    margin-right:5%;
}
.four-col{
    width:22%;
    margin-right:4%;
}
.last{
    margin-right:0 !important;
}


section , footer {
    width: 100%;
    position: relative;
}



/*************** HOME PAGE CSS ***************/
header{  
width: 100%; 
z-index: 2;
 -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
 }
 .topbar{
    background-color: var(--peach);
    padding: 8px 0;
 }
  .topbar-in{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    position: relative;
}
.logo{ 
 }
.logo img{width: 240px;}
.header-right{

display: flex;

align-items: center;

gap: 20px;
}


.social {

display: flex;

align-items: center;

gap: 2px;
}
.social a {width:30px;height: 30px;border-radius: 100%;font-size: 17px;display: flex;align-items: center;justify-content: center;color: var(--primary-color);background-color: transparent;}
    .social a:hover {
    background-color: var(--primary-color);
color: var(--white);
    }

.inline {
    display: inline-flex;
    padding: 0;
    line-height: 20px;
    color:var(--black);
    align-items: center;
    font-size: 14px;
}
.inline a{
    color: var(--black)
    }
    .inline a:hover{
    color: var(--primary-color)
    }
.inline i{color: var(--primary-color);font-size: 16px;margin-right: 5px;}
.topbar-left, .topbar-right{
    display: flex;
    align-items: center;
    gap:40px;
}
.languages{
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 3px;
}
.languages a{
    padding: 1px 4px;
    color: var(--primary-color)
}
a.download-btn{
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 22px;
}
a.download-btn:hover{
        background: rgb(186,136,25);
/*background: linear-gradient(0deg, rgba(186,136,25,1) 14%, rgba(243,226,119,1) 100%);*/
}
.download-btn span{
    font-size: 14px;
    margin-left: 11px;
}
.slider-wrap {
    position: relative;
}
.link{}

.link a{
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 78px 18px 30px;
    margin: 0;
    position: relative;
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    margin: 0 0 10px 0;
    border: 0px solid var(--primary-color);
    border-radius: 40px;
    overflow: hidden;
    font-weight: 600;
}

.white-link a{
    color: var(--primary-color);
    background: var(--white);
}
.link a span {
    position: relative;
    z-index: 2;
}
.link a:hover span {
    color: #fff;
}
.link a:after{
    content: '';
    width: 100%;
    height: 0;
    position: absolute;
    bottom: -50%;
    left: 0%;
    z-index: 1;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: rgb(186,136,25);
background: linear-gradient(0deg, rgba(186,136,25,1) 14%, rgba(243,226,119,1) 100%);
border-radius: 50%;
-webkit-transition: height 0.7s ease;
    transition: height 0.7s ease;
}
.link a:hover:after {
    height: 200%;
    -webkit-transition: height 0.7s ease;
    transition: height 0.7s ease;
}

.white-link a:after{

}
.link a:before{
    content: '\e5c8';
    width: 34px;
    height: 34px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto 0;
    z-index: 2;
    background-color: transparent;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    font-family: 'Material Symbols Outlined';
    font-weight: 200;
    font-style: normal;
    font-size: 35px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.white-link a:before{
    color: var(--primary-color)
    }
.link a:hover:before{
    right: 20px;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


.link a:hover:before{
   filter: brightness(0) invert(1);}

a.callus{
    display: inline-flex;
    gap:15px;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    border-radius: 55px;

}
.curved{
    border-radius: 15px;
    overflow: hidden;
}

.subtitle{
    display: inline-block;
    padding: 0 0 0 31px;
    position: relative;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 18px;
    color: var(--primary-color)

}
.subtitle:before{
   content: "\f111";
   position: absolute;
   top: -1px;
   left:0;
   font-family: "FontAwesome";
   color: var(--yellow);
   font-size: 10px;
   }
    .heading{
        font-size: 50px;
        line-height: 69px;
        font-weight: 500;
        margin-bottom: 30px;
    }

.mask {
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0;
    padding: 0px;
}
.mask:after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/mask-shape.png) no-repeat top right;
    background-size: contain;
    position: absolute;
    top:0;
    left:0;
    -webkit-animation: rotationhalf 3s infinite alternate;
}
.emblem{
    position: absolute;
    bottom: 50px;
    left: 0px;
    z-index: 2
}
.intro-wrap{
    position: relative;
}
.arrow-top{
    position: absolute;
    top: 46px;
    right: 29%;
    z-index: 2
}

.intro-right{
    padding-left: 221px;
}
.why-fab-wrap{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.why-fab-circle{
    flex:0 0 20%;
    aspect-ratio: 1 / 1;
    /*background-color: var(--primary-color);*/
    position: relative;
    border-radius: 100%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(62,19,21);
    background: linear-gradient(0deg, rgba(62,19,21,1) 14%, rgba(120,37,41,1) 100%);
    padding: 15px 35px 25px 35px;
    text-align: center;
}
.why-fab-circle2{
    flex:0 0 10%;
    aspect-ratio: 1 / 1;
    /*background-color: var(--primary-color);*/
    position: relative;
    border-radius: 100%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(62,19,21);
    background: linear-gradient(0deg, rgba(62,19,21,1) 14%, rgba(120,37,41,1) 100%);
    padding: 15px 15px 25px 35px;
    text-align: center;
}
.why-fab-circle img.icon{
    max-width: 50%;
    margin-bottom: 10px;
    }
.why-fab-circle p{
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0;
    }
.why-fab-circle:nth-child(even){
 background: rgb(193,145,31);
background: linear-gradient(0deg, rgba(193,145,31,1) 14%, rgba(242,224,116,1) 100%);
    }
.why-fab-circle:after {
    position: absolute;
    content: '';
    width: 90%;
    height: 90%;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border: 2px dashed #fff;
    border-radius: 100%;
    background-color: transparent;
    -webkit-animation: rotation 20s infinite linear;
}
.why-fab-circle:nth-child(even):after {
    -webkit-animation: rotation-rev 20s infinite linear;
}

.yellow-gradient{
background: rgb(193,145,31);
background: linear-gradient(0deg, rgba(193,145,31,1) 14%, rgba(242,224,116,1) 100%);
}
.red-gradient{
background: rgb(62,19,21);
background: linear-gradient(0deg, rgba(62,19,21,1) 14%, rgba(120,37,41,1) 100%); 
}
.arrow-next{
    position: absolute;
    bottom:-13%;
    left:58%;
    z-index: 2;
    max-width: 95%;
}
.why-fab-circle:nth-child(even) .arrow-next{
    bottom:auto;
    top:-13%;
    transform: scaleX(-1) rotate(180deg);
}

.services-wrap{}
.services-single{
    flex:0 0 48%;
    background-color: var(--white);

    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3%;
    position: relative;
  

}
.services-single:hover {
    color: var(--white);
    }
.services-single:after {
    content: '';
    width: 0px;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
    background-color: var(--primary-color);
    color: var(--white);
       -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out;
    }
     .services-single:hover:after{
        width:100%;
    }
.services-single a{
      display: flex;
    align-items: center;
    gap:25px; 
      min-height: 225px;
      position: relative;
      z-index: 2;
     
}
.services-img{
    flex:0 0 40%;
    line-height: 0;
    align-self: stretch;
}
.services-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
.services-cont{

    flex: 0 0 54%;
    padding: 0 25px;
    border-left: 5px solid var(--primary-color);
    -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out; 
    /* margin: 25px 0; */
}
a .services-cont {
      -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; 
}
   
     .services-single:hover .services-cont{
       border-left: 5px solid var(--white);
    }
a .services-cont h3{
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
    color: #782529;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; 
    }
     .services-single:hover a, .services-single:hover a .services-cont h3{
        color: var(--white)
    }
.shadow{
     -webkit-box-shadow: 0px 0px 39px -18px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 39px -18px rgba(0,0,0,0.25);
box-shadow: 0px 0px 39px -18px rgba(0,0,0,0.25);
 -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.shadow:hover{
     -webkit-box-shadow: 0px 0px 39px -18px rgba(0,0,0,0.55);
-moz-box-shadow: 0px 0px 39px -18px rgba(0,0,0,0.55);
box-shadow: 0px 0px 39px -18px rgba(0,0,0,0.55);
}

.red-box{
    padding: 80px  90px;
    background: url(../images/bg2.jpg) top center ;
    background-size:cover;
    color: var(--white);
}
.section-news{}
.section-news:after{
    content: '';
    width: 100%;
    height: 170px;
    background-color: var(--peach);
    position: absolute;
    bottom: 0;
    left:0;
    z-index: -1;
}

.news-single{
    margin-bottom: 5%;
    flex:0  0 48%;
}
.news-single a:hover{

    color: var(--primary-color)
    }
.news-single a{
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
     -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out;
}
.news-single a:after{
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background-color: #fff;
    z-index: 0;
     -webkit-transition: all 700ms ease-in-out;
    -moz-transition: all 700ms ease-in-out;
    transition: all 700ms ease-in-out;
    }
    .news-single a:hover:after{
        width:100%;
    }
.news-img{
   width:40%;
    line-height: 0;
    position: relative;
    z-index: 1;
}
.news-cont{
    width:60%;
    padding: 15px 10px 15px 40px;
    position: relative;
    z-index: 1;
}
.news-cont h3{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0px;
    }
.date{
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.news-inner-row{}
.news-inner-row .news-single{
    background:url(../images/bg2.jpg);
}
.message-box{}
.message{
    padding: 0 80px 50px 80px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.7)
}
.message p{
    font-size: 18px;
    line-height: 30px;

    }
.message:after, .message:before{
    content: url(../images/icons/quote.png);
    position: absolute;
    top:0;
    left:0;
    }
.message:before{
    top:auto;
    left:auto;
    bottom: 30px;
    right:0;
    transform: scale(-1);
}
.name{
    padding-top: 30px;
    color: var(--primary-color);
    font-size: 20px;
}
.smalltext{
    font-size: 14px;
    line-height: 16px;
}
.testimonial-single{
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    /* gap:25px; */
    background-color: var(--white);
    padding: 50px 50px 20px 50px;
   
}
.t-img{
    width: 106px;
    height: 106px;
}
.t-cont{
   width: calc(100% - 140px);
   padding-left: 40px;
   position: relative;
}
.t-cont:after{
        content: url(../images/icons/quote2.png);
    position: absolute;
    top:3px;
    left:0;
    }
.t-cont p{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 20px;

    }
.t-img img{
    border-radius: 100%;
    max-width: 100%;
    }
.t-name{
color: var(--primary-color)
}
.grey-text{
    color: #5d5d5d;
    font-size: 14px;
    line-height: 14px
}

.owl-demo2 .item{
    padding: 35px;
}

.sideheading{
    font-size: 20px;
    line-height: 22px;
    color: var(--primary-color);
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;

}
.sideheading:after{
    content: '';
    width: 15px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -1px;
    left:0;

    }

    .pad50{
        padding: 50px;
    }

.mission-box {
    padding: 20px 30px 10px 30px;
    position: relative;
}
.mission-box h3{
    font-size: 25px;
    line-height: 35px;
    }
.mission-box img{
    margin-bottom: 15px;
    max-width: 50px;
       }
    .underline{
        position: relative;
        padding-bottom: 15px;
    }
      .underline:after{
        content: '';
       width: 50px;
       height: 1px ;
       background-color: var(--yellow);
       position: absolute;bottom: 0;
       left:0;
    }

    .boxlist{
        margin:0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap:0px 5px;
    }
        .boxlist li{
        margin:0;
        padding: 0;
        list-style: none;
        padding: 12px 20px;
        background-color: var(--peach);
        border-radius: 5px;
        margin-bottom: 5px;
        font-size: 16px;
        line-height: 18px;
        display: inline-block;
        color: var(--primary-color);
        border:0px solid var(--primary-color);
          -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    cursor: default;
    }
    .boxlist li:hover{
         background-color: var(--primary-color);
         color: var(--white)
    }
    .bold{font-weight: 700}
/*************** HOME PAGE CSS End ***************/


/*************** footer CSS ***************/
footer{}
footer a{color: var(--white)}
footer a:hover{color: var(--secondary-color)}
.text-right{
    text-align: right;
}
.footer{
    position: relative;
    color: var(--white);
    font-size: 14px;
    padding-top: 147px !important;
    padding-bottom: 50px !important;
}
.footer:before{content: url(../images/footer-mark.png);position: absolute;top: -3px;right:0;}
.footer p{
       font-size: 14px;
       line-height: 21px;
    }
.f-contact{
    position: relative;
    padding: 0 0 0 85px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 18px;

}
.f-contact p{
    margin-bottom: 0;
    line-height: 25px;
    }
.f-contact a{
    font-weight: bold
}
.footer-logo{
max-width: 135px;
    text-align: right;
    margin-right: 45px;
}
.footer-div{
flex:0 0 25%;
}
.footer-div h3{
    position: relative;
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    text-transform: capitalize;
}

ul.footerlinks{
    margin:0 0 20px 0;
    padding: 0;
}
ul.footerlinks li{
    list-style: none;
    padding: 6px 0;
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
ul.footerlinks li a{
    color: var(--white);
}
ul.footerlinks li a:hover{
    color: var(--secondary-color);
}
.footer-social{
}
.footer-social a{
    color: #fff!important;
}
.footer-social a i {
    margin-right: 7px;
    font-size: 19px;
    color: #fff;
}
.footer-social a:hover i {
    color: #d7ae6c;
}
.footer-bottom{
    border-top:1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
    color: #fff;
    font-size: 14px;

}
.copy{
    display: flex;
    justify-content: space-between;
}
.copy p{
    margin-bottom: 0;
    }
footer .logo img{ width: 135px;
    text-align: right;
    margin-right: 45px; }

/*************** INNER PAGE CSS ***************/

.flex-gap{gap:2%;}
.two-flex-col{
flex:0 0 48%; 
}
.three-flex-col{
flex:0 0 31%;
}
.four-flex-col {
flex:0 0 22%;
    }
.five-flex-col {
flex:0 0 18%;
    }
.image-box{
    padding-right:30px;
    padding-bottom:30px;
    position: relative;
    width: 100%;
}
.stickybar{
    position: sticky !important;
    top: 120px;
}

.image-box .overlay-effect3{
    border-radius: 15px;
       /* -webkit-box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0px 34px -15px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);*/

    }
.image-box:after, .image-box2:before{
    content: '';
    width: 90%;
    height: 90%;
    background: var(--primary-color);
    border-radius: 15px;
    position: absolute;
    bottom: 0;
    right:0;
    z-index: -1;
    }

    .highlight-text{
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
    }
    .wrap-box{
     border-radius: 15px;
    -webkit-box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    -moz-box-shadow: 0px 0px 34px -15px rgba(0,0,0,0.7);
    box-shadow: 0px 0px 34px -15px rgb(0 0 0 / 70%);
    overflow: hidden;

    }

ul.list{
    margin:0;
    padding: 0;
    margin-bottom: 30px;
}
ul.list li{
list-style: none;
    padding: 2px 7px 2px 20px;
    line-height: normal;
    position: relative;
}
ul.list li:before{
     content: "\f111"; 
    position: absolute;
    top:7px;
    left:0;
     font-family: "FontAwesome";
     color: var(--yellow);
     font-size: 8px;

    }

.cnt-wrap {  
background-color: var(--primary-color); 
padding-top: 26px;
padding-bottom: 20px;
}
.icon_box {
    padding: 25px 25px 25px 75px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
}
.icon_box i {
    margin: 0;
    padding: 8px;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 30px;
    color: var(--black);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background: var(--white);
    position: absolute;
    top: 30px;
    left: 15px;
}

.icon_box .descripion { display:block; overflow:hidden}
.icon_box .descripion h5 {font-size: 18px;margin: 0 0 8px 0;text-transform: uppercase;color: #fff; font-weight: 400}
.icon_box p {margin:0;}
.icon_box a { color:#ccc}
.icon_box:last-child{ margin-bottom:0px;  border-bottom:none;}
.cnt-form{   }
.map{ overflow: hidden; width: 100%  ; line-height: 0}
.map iframe{}
.map iframe:hover{}
.table-row{
    width: 100%;
    overflow-x: scroll;
}
.table-style {border-collapse: collapse; width: 100%;}
.table-style th, .table-style td {text-align: left;padding: 8px; border: 1px solid #d9d9d9;}
.table-style tr:nth-child(even){background-color: #f2f2f2}
.table-style th { background-color:var(--primary-color); color: white;}

/*************** INNER BANNER ***************/
/*************** INNER BANNER ***************/
.banner{
 z-index: 0;
 width: 100%;
 height: 200px;
 display: flex;
 align-items: end;
 background-image: url(../images/banner.jpg);
 background-position: center;
 background-repeat: no-repeat;
 position: relative;
 background-size: cover;
 }
.banner-caption h2{
   color: var(--primary-color);
   font-size: 40px;
   margin-bottom: 10px;
   font-weight: 600;
   line-height: 42px;
   text-transform: uppercase;
   /* text-shadow: 0px 1px 7px #00000050; */
}
.banner-caption h4 span{color: #000;}
.banner-caption h4 a{color: #000;}
.banner-caption h4 {
    padding: 0px 0px;
    display: inline-flex;
    margin-bottom: 0px;
    align-items: center;
    color: #000;
    margin-bottom: 52px;
    font-size: 14px;
    font-weight: 400;
    text-shadow: 0px 1px 7px #00000050;
}
.banner-caption{position: relative;z-index: 1;}
.banner:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: #fff;
    opacity: .3;
}

.banner-caption h4 span.b-sep{
    font-size: 0;
    width: 10px;
    height: 10px;
    margin: 0 12px;
    display: inline-block;
    background-color: var(--secondary-color);
    margin:0 10px;
    border-radius: 100%;
}


/*************** FIXED HEADER ***************/
header.smaller {top:0; left:0px; position: fixed; z-index: 9; -webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    -moz-box-shadow:    0px 1px 5px 0px rgba(50, 50, 50, 0.41);
    box-shadow:         0px 1px 5px 0px rgba(50, 50, 50, 0.41); ;
-moz-box-shadow: 0px 4px 20px #00000059; background-color: #fff;}
header.smaller .topbar{ display: none;}



/*************** JARALLAX ***************/
.jarallax{ position:relative; background-repeat:no-repeat; background-position:center center; -moz-background-size:cover; 
-webkit-background-size:cover; -o-background-size:cover; background-size:cover;}

.bg1{background: url(../images/bg1.webp) no-repeat top center;}
.bg2{background: url(../images/bg2.webp) no-repeat top center; background-size: cover}
.bg3{background: url(../images/bg3.webp) no-repeat top right #000 ;}
.bg4{background: url(../images/bg4.jpg) no-repeat center center #fff ; }
/**********forms**************/
form{
    margin:0;
    padding:0;
}
*:focus {  
    outline: none;
}
.fieldset{
        width: 100%;
        height: 52px;
        padding: 8px 10px;
        background-color: none;
        background-color: transparent;
        display: block;
        border: 1px solid rgb(211 211 211);
        margin: 0 0 10px 0;
        color: #626262;
        font-size: 14px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        -ms-border-radius: 6px;
        border-left: 2px solid var(--primary-color);

}
.fieldset1{ height: 130px; }
.sendbutton{
width: auto;
    height: auto;
    border: 0;
    outline: 0;
    margin: 0 5px 0 0;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    vertical-align: top;
    padding: 15px 40px 15px;
    text-align: center;
    background:var(--primary-color);
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    border-radius: 55px;
    }

    .sendbutton:hover{
       background: rgb(193,145,31);
background: linear-gradient(0deg, rgba(193,145,31,1) 14%, rgba(242,224,116,1) 100%);
    }
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}
.contact-form{ width: 100%; }
.contact-form .fieldset {margin-bottom: 0px;}
::-webkit-input-placeholder {
   color:  var(--body-color) !important;
}
:-moz-placeholder { /* Firefox 18- */
   color:  var(--body-color) !important;
}
::-moz-placeholder {  /* Firefox 19+ */
   color:  var(--body-color) !important;
}
:-ms-input-placeholder {  
   color:  var(--body-color) !important;
}

.ftr-form ::-webkit-input-placeholder {
   color:  #fff !important;
}
.ftr-form :-moz-placeholder { /* Firefox 18- */
   color:  #fff !important;
}
.ftr-form ::-moz-placeholder {  /* Firefox 19+ */
   color:  #fff !important;
}
.ftr-form :-ms-input-placeholder {  
   color:  #fff !important;
}

.wpcf7-form-control-wrap {
    position: relative;
}

/*************** backToTop *************/
.progress-wrap {
    position: fixed;
    right: 10px;
    bottom: 10px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
   /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);*/
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .progress-wrap::after {
    position: absolute;
    content: "\f062";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    color:var(--secondary-color);
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }

  .progress-wrap svg path { 
    fill: none; 
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: var(--secondary-color);
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }

  ul.inner-list li {
    margin-bottom: 10px;
}
.inner-subtitle {
    font-size: 20px;
    font-weight: 600;
}
.owl-carousel .testimonial-single .t-cont {
    width: 100%;
}
.owl-carousel .testimonial-single  {
    min-height: 240px;
}

/************************************* 1600px *************************************/
@media only screen and (max-width: 1600px) {

}

/************************************* 1400px *************************************/
@media only screen and (max-width: 1500px) {
.container{ width:96%;}
.intro-right {
    padding-left: 180px;
}
.why-fab-circle p{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    }
    .news-cont h3 {
    font-size: 17px;
    line-height: 26px;
}
.news-cont {
    padding: 15px 15px 15px 15px;
}
}
/************************************* 1400px *************************************/
@media only screen and (max-width: 1400px) {

}

/************************************* 1366px *************************************/
@media only screen and (max-width: 1366px) {

}
/************************************* 1180px *************************************/
@media only screen and (max-width: 1200px) {
    .news-single a{
        flex-direction: column;
    }
.news-img, .news-cont{width:100%;}
.header-right {
    flex-direction: row-reverse;
}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
.container{ width:90%;}

.intro-right {
    padding-left: 0;
}

}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
.section-intro .smd40,  .section-intro .smd60{width: 100%}
.arrow-top{display: none;}
.why-fab-wrap {
    flex-wrap: wrap;
}
.why-fab-circle {
    flex: 0 0 40%;
    margin-bottom: 15px;
    }
    .why-fab-circle .arrow-next{display: none;}
    .heading {
    font-size: 40px;
    line-height: 59px;
}
.topbar-left .inline:first-child{font-size: 0;}
.topbar-left, .topbar-right {
    align-items: center;
    gap: 12px;
}
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {


}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {
.services-single{
    flex:0 0 100%;
}
.footer-div:last-child {
    flex: 0 0 100%;
    text-align: center;
}
.footer-div {
    flex: 0 0 33.3%;
}
.copy {
    flex-direction: column;
    align-items: center;
}
.red-box {
    padding: 30px 40px;
}
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {

.logo img {
    max-width: 180px;
}
.services-cont h3 {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
}
.services-cont {
    flex: 0 0 54%;
    padding: 0 15px;
  

}
    .heading {
        font-size: 30px;
        line-height: 40px;
    }
    .news-single {
    margin-bottom: 5%;
    flex: 0 0 100%;
}
.testimonial-single{
    flex-direction: column;
}
.t-cont {
    padding-top: 31px;
    width: 100%;
    padding-left: 0;
    position: relative;
}
.footer-div{
     text-align: center;
}
.footer-div h3 {
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}
ul.footerlinks {
    margin: 0 0 40px 0;
    padding: 0;
    text-align: center;
}
ul.footerlinks li {
    list-style: none;
    padding: 2px 0;
    line-height: 20px;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}
.footer{
        padding-top: 77px !important;
        flex-direction: column;
        
}
.footer:before{display: none;}
.footer p, .footer-bottom p {
    font-size: 12px;
    line-height: 18px;
}
.footer-bottom {
    font-size: 12px;
    line-height: 12px;
}
.topbar-in {
    flex-direction: column;
}
.footer p{
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .footer-logo {
    max-width: 115px;
    text-align: right;
    margin-right: 0;
    margin-top: 25px;
}
.image-box{
    margin-bottom: 25px;
}

.why-fab-circle {
    flex: 0 0 48%;
    margin-bottom: 15px;
}
.services-single a {
    display: flex;
    align-items: center;
    gap: 0px;
    min-height: auto;
    position: relative;
    z-index: 2;
    flex-direction: column;
}
.services-img {
    flex: 0 0 100%;
}
.services-cont {
    flex: 0 0 100%;
    padding: 25px;
}
.red-box {
    padding: 25px 15px;
}
.message p {
    font-size: 16px;
    line-height: 30px;
}
.message {
    padding: 40px 0 40px 0;
}
.testimonial-single {
    padding: 15px;
}
.owl-demo2 .item {
    padding: 10px;
}
.t-cont p {
    margin-bottom: 10px;
}
.pad50 {
    padding: 20px;
}
.mission-box {
    padding: 15px 0 0 0;
}
.cnt-form.smd70 .smd50 p {
    margin: 0;
}
.cnt-form.smd70 .smd100 p {
    margin: 0;
}
.cnt-form.smd70 .smd50 p input {
    margin: 0;
}
.cnt-form.smd70 .smd100 p input {
    margin: 0;
}
.russian-lang .cnt-form.smd70 .smd100 p input {
    font-size: 13px;
}
.russian-lang .cnt-form.smd70 .smd100 p input.sendbutton {
    width: 100%;
}
.cnt-form.smd70 h2.heading.subheading {
    margin-bottom: 5px;
}
.cnt-wrap.smd30.curved.bg2 {
    margin-bottom: 25px;
}
.boxlist li {
    font-size: 13px;
    flex: 0 0 48%;
}
.row-flex.justify-center.text-center.pt-50.pb-50.bg4.curved {
    padding: 20px;
}
.highlight-text {
    font-size: 16px;
}
.banner-caption h2 {
    font-size: 30px;
    line-height: 35px;
}
.row-flex.flex-gap.curved.bg2.pad50.text-white .five-flex-col {
    flex: 0 0 100%;
}
.topbar-left .inline {
    width: 100%;
    margin-bottom: 5px;
    text-align: center;
    justify-content: center;
}
.topbar-left .inline:first-child {
    font-size: 14px;
}
.why-sction .why-fab-circle {
    padding: 15px 25px 25px 26px;
}
.ru-banner .banner-caption h2 {
    font-size: 20px;
    line-height: 25px;
}
.owl-carousel .testimonial-single  {
    min-height: auto;
}
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
.sendbutton { font-size: 15px; padding: 15px 15px 15px;}
}


/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
    .header-right {
        gap: 10px;
    }
    a.download-btn {
        padding: 12px ;
        font-size: 11px;
    }


}

/************************************* 460px *************************************/
@media only screen and (max-width: 460px) {
    a.download-btn span {
        display: none;
    }
    .logo img {
        max-width: 160px;
    }
    .why-sction .why-fab-circle {
        padding: 10px 30px 10px 30px;
        font-size: 12px;
    }
    .why-sction .why-fab-circle p {
        font-size: 12px;
        line-height: 17px;
        text-align: center;
    }

}

/************************************* 400px *************************************/
@media only screen and (max-width: 400px) {
    .why-sction .why-fab-circle {
        padding: 5px 25px 25px 25px;
    }
    .why-sction .why-fab-circle img.icon {
        margin-bottom: 5px;
    }
}

/************************************* 360px *************************************/
@media only screen and (max-width: 380px) {
.why-fab-circle p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 0;
}
.why-fab-circle {
    flex: 0 0 49%;
    padding: 15px 18px 25px 18px;
}
.why-fab-circle img.icon {
    max-width: 50%;
    margin-bottom: 0px;
}
.logo img {
    max-width: 150px;
}
.why-sction .why-fab-circle {
    flex: 0 0 100%;
}
.why-sction .why-fab-circle p {
    font-size: 13px;
}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 380px) {
    .g-recaptcha iframe{ transform: scale(0.7);}
}


/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
    /* .header {
        justify-content: center;
        flex-wrap: wrap;
    }
    .logo {
        flex: 0 0 100%;
    }
    .header-right {
        gap: 0px;
        justify-content: space-between;
        flex: 0 0 100%;
    }
    .logo .textwidget.custom-html-widget {
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
    } */

    .why-fab-circle {
        flex: 0 0 100%;
    }
    .boxlist li {
        flex: 0 0 100%;
    }
    a.download-btn {
        padding: 9px;
        font-size: 10px;
    }
    .logo img {
        max-width: 140px;
    }

}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {
}