@charset "UTF-8";

/*
Theme Name: e-evakuator
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

html, body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.eva-textblock{
    margin-right: 20px;
}

.eva-imgblock{
    gap:10px;
}

.navbar .header-phone{
    color: #b5b6bc;
    align-items: center;
}

.navbar.is-sticky .header-phone{
    color: #161c2d;
}

.footer-copyrait{
    display: flex;
    align-items: end;
    justify-content: center;
}

.olimp-logo {

    opacity: .7 !important;
 
    max-width: 100% !important;
 
 }
 
 .olimp-logo:hover {
 
    opacity: 1 !important;
 
 }

 .btn{
    background-color: #ff4141;
    border-color: #ff4141;
 }

 .btn:hover{
    background-color: #fb2525;
    border-color: #fb2525;
 }

h6{
    color:#ff4141;
}

input.wpcf7-text{
    height: 2.5rem;
    width: 100%;
    border-radius: 0.25rem;
    border-width: 1px;
    border-color: inherit;
    background-color: transparent;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
    margin-bottom: 1.25rem !important;
}

.wpcf7-textarea{
    height: 70px;
    width: 100%;
    border-radius: 0.25rem;
    border-width: 1px;
    border-color: inherit;
    background-color: transparent;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
    margin-bottom: 1.25rem !important;
}

input[type="submit"].wpcf7-submit{
    border-width: 1px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.025em;
    border-radius: 0.375rem !important;
    cursor: pointer;
    background-color: #ff4141;
    border-color: #ff4141;
    color: #fff;
}

.callme{
  position: fixed;
    border-radius: 50%;
    right: 2rem;
    bottom: 2rem;
    width: 60px;
    height: 60px;
    z-index: 12;
    transition: all 0.9s ease;
    box-shadow: 0 0 0 #006342;
    animation: callme 2s infinite;
    -webkit-animation: callme 2s ease-out;
    -webkit-animation-iteration-count: infinite;
}

.callme:hover {
  animation: none;
}

.close-ico{
  display: none;
  color: #fff;
  font-size: 32px;
}

.callme.active_widget .close-ico{
  display: block;
}

.callme.active_widget .callme-btn svg{
  display: none;
}


@-webkit-keyframes callme {
  0% {
    -webkit-box-shadow: 0 0 0 0 inherit;
  }
  70% {
      -webkit-box-shadow: 0 0 0 15px rgba(0,0,0, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}
@keyframes callme {
  0% {
    -moz-box-shadow: 0 0 0 0 inherit;
    box-shadow: 0 0 0 0 inherit;
  }
  70% {
      -moz-box-shadow: 0 0 0 15px rgba(0,0,0, 0);
      box-shadow: 0 0 0 15px rgba(0,0,0, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
      box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}


.callme-btn {
      background: #006342;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: .3s;
}

.callme-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 65px;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.callme-list.show {
  visibility: visible;
  opacity: 1;
}

.callme-list a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  text-decoration: none;
  -webkit-animation: icons_rotate 2s ease-out;
  -webkit-animation-iteration-count: infinite;
}

.callme-list a:hover{
  animation: none;
}

@keyframes icons_rotate{
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  25% {
      -webkit-transform: rotate(10deg) scale(1.1);
      transform: rotate(10deg) scale(1.1);
  }
  50% {
      -webkit-transform: rotate(0deg) scale(1);
      transform: rotate(0deg) scale(1);
  }
  70% {
      -webkit-transform: rotate(-10deg) scale(1.1);
      transform: rotate(-10deg) scale(1.1);
  }
  100% {
      -webkit-transform: rotate(0deg) scale(1);
      transform: rotate(0deg) scale(1);
  }
}

.callme-list a i{
  color: #fff;
  font-size: 30px;
}

.my-block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 490px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.my-center {
  width: fit-content;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.my_ul {
  display: flex;
}

.my_ul li a{

}

.my_ul li {
  display: flex;
  align-items: center;
}

.my_ul li:nth-child(1):after {
  content: '|';
  margin-right: -5px;
  margin-left: -5px;
}

@media (min-width: 992px) {
  .my_ul li:nth-child(1):after {
    color: rgb(255 255 255 / 0.6);
  }

   .navbar.is-sticky .my_ul li:nth-child(1):after {
    color: rgb(22, 28, 45);
  }
}

@media (min-width: 992px) and (max-width: 1280px) {
  .navbar .navigation .navbar-nav.nav-light a.nav-link {
    padding: 0.5rem;   
  }

  .navbar a.navbar-brand {
    margin-right: 1.5rem;
  }
}

@media (max-width: 500px) {
  .navbar a.navbar-brand {
    margin-right: 0;
  }
}


@media screen and (max-width: 991px) {
    .l-dark{
        width: 100px;
    }
    .about-eva{
        flex-direction: column;
    }
    .eva-textblock{
        order: 1;
    }
  }

  @media screen and (max-width: 767px) {
    .contact-info{
        grid-row-start: 1;
    }
  }


  @media screen and (max-width: 500px) {
    .my-block {
      flex-direction: column;
      align-items: center;
    }

    .my-block .text-lg {
      margin-top: 10px;
    }
  }