/* latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/quicksand.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Quicksand', sans-serif;
  scroll-behavior: smooth
}

body[modal="true"]{
  overflow: hidden !important;
}
body[modal="true"]  .modal{
  opacity: 1 !important;
  pointer-events: auto !important;
  -webkit-transition: z-index 0s !important;
  -o-transition: z-index 0s !important;
  transition: z-index 0s !important;
  z-index: 999 !important;
}
.modal{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  width: 100vw;
  background: rgba(0,0,0,0.5);
  -webkit-box-shadow: 0px 0px 20px -5px black;
          box-shadow: 0px 0px 20px -5px black;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: -3;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.modal > .content{
  width: 80vw;
  margin-top: 5vh;
  height: auto;
  background: #fff;
  overflow: hidden;
  overflow-x: hidden;
  border-radius: 2px;
  scrollbar-width: none;
  margin-left: 10vw;
  margin-bottom: 5vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  z-index: 1050;
  padding-left: 30px;
}
.modal .content h2 {
  text-align: center;
}
.modal .content .modalHeader{
  position: relative;
  width: 80vw;
  height: 10px;
}
.modal .content .modalHeader .btnClose{
  font-size: 25px;
  position: absolute;
  right: 50px;
  line-height: 10px;
  margin-top: 10px;
  cursor: pointer;
}


nav{
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: center;
      align-content: center;
  position: fixed;
  left:0;
  right:0;
  width: 100vw;
  height: 60px;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
}

nav #logo{
  position: absolute;
  left: 10px;
  top: 5px;
  color: #222;
  font-family: 'Georgia', serif;
}
nav #burger{
  position: absolute;
  right: 30px;
  top: 7.5px;
  font-size: 30px;
  display: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 25px;
  cursor: pointer;
}
nav #burger span{
  display: inline-block;
  position: relative;
  height: 5px;
  width: 40px;
  background-color: #222;
  -webkit-transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
  -o-transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
  display: none;
}
#burger span:before, #burger span:after {
  content: '';
  height: 5px;
  width: 40px;
  position: absolute;
  right: 0;
  background-color: #222;
  -webkit-transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
  -o-transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
  transition: all 0.5s cubic-bezier(0.34, 0.07, 0.1, 1);
}
#burger span:before {
  top: -10px;
}
#burger span:after {
  bottom: -10px;
}

nav #burgerSwitch{
  display: none;
  opacity: 0;
}

nav a{
  text-decoration: none;
  color: #222;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  width: inherit;
}

nav ul li{
  margin: 0px 20px;
  color: #222;
  font-family: arial;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
nav ul li:hover a{
  color: purple;
}
nav ul li:last-child{
  margin-right: 35px;
}

@media screen and (max-width: 675px){
  nav #burger span{
    display: inline-block;
  }
  nav #burgerSwitch:checked ~ ul{
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important;
    height: auto;
  }
  nav #burgerSwitch:checked ~ #burger > span{
    background-color: transparent;
  }
  nav #burgerSwitch:checked ~ #burger > span:before{
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  nav #burgerSwitch:checked ~ #burger > span:after{
    top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  nav ul{
    display: block;
    position: absolute;
    left: 0;
    top: 43px;
    width: 100vw;
    height: 0;
    background: white;
    opacity: 0;
    -webkit-box-shadow: 15px 0px 15px -7px black;
            box-shadow: 15px 0px 15px -7px black;
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    z-index: -1;
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  nav ul li{
    height: 60px;
  }
  nav ul li:nth-child(1){
    padding-top: 25px;
  }
  nav #burger{
    display: block;
  }
}

.header{
  width: 100vw;
  min-height: 350px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: url(../src/Sreemik_fon.jpg);
  background-size: cover;
  background-repeat: repeat;
  -webkit-animation: backgr 185s linear infinite;
          animation: backgr 185s linear infinite;
}
@-webkit-keyframes backgr{
  0%{
    background-position: 0 10000px;
  }
  100%{
    background-position: 0 0;
  }
}
@keyframes backgr{
  0%{
    background-position: 0 10000px;
  }
  100%{
    background-position: 0 0;
  }
}
.header p{
  color: white;
  font-family: arial;
  text-align: center;
  font-size: 25px;
  max-width: inherit;
  padding-top: 55px;
  color: #FFCCFF;
  padding-bottom: 20px;
}
.header p span{
  font-size: 60px;
  line-height: 110px;
  font-family: 'Georgia', serif;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.mainContainer{
  position: relative;
  width: 100vw;
  min-height: calc(100vh - 350px);
  background: #fefefe;
}

.section{
  width: 100vw;
  min-height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section .leftCol{
  width: 50vw;
  margin: 0 0;
  height: inherit;
}

.section .rightCol{
  width: 50vw;
  margin: 0 0;
  height: inherit;
}

/*
  Pricing Cards
*/


#section1{
  min-height: 665px;
}

#section1 > #request{
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: center;
}

.defaultVersion{
  width: 100vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  -o-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
}
.defaultInformation{
  max-width: 1150px;
  /* height: 464px; */
  -webkit-box-shadow: 0 20px 20px rgba(0,0,0,0.08);
          box-shadow: 0 20px 20px rgba(0,0,0,0.08);
  border-radius: 5px;
  margin-top: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  margin-bottom: 20px;
  break-after: always;
}
.defaultInformation > h2{
  margin-bottom: -5px;
  margin-top: 10px;
}
@media screen and (max-width: 994px){
  .defaultInformation{
    width: 94vw;
    margin: 3vw;
    height: auto;
  }
}
.packageTitle{
  margin-top: 20px;
  -webkit-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  -o-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  text-align: center;
}
.packageInformation{
  max-width: 1150px;
  -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.16);
          box-shadow: 0 0 20px rgba(0,0,0,0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  min-height: 400px;
  width: inherit;
}

.wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: inherit;
  max-height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.fadeOut{
  -webkit-transform: translateX(-25%) !important;
      -ms-transform: translateX(-25%) !important;
          transform: translateX(-25%) !important;
  opacity: 0 !important;
  pointer-events: none;
  /** 2 lines below are new */
  visibility: hidden;
  position: absolute;
}
.removeHeight{
  -webkit-transition-delay: 5s !important;
       -o-transition-delay: 5s !important;
          transition-delay: 5s !important;
  height: 0 !important;
  -webkit-transition-delay: 0s !important;
       -o-transition-delay: 0s !important;
          transition-delay: 0s !important;
}
.box {
  padding: 41px 20px;
  position: relative;
  background: #fff;
  height: 382px;
  min-width: 288px;
  width: 13%;
  z-index: 3;
  border-radius: 5px;
  -webkit-box-shadow: 0 20px 20px rgba(0,0,0,0.08);
          box-shadow: 0 20px 20px rgba(0,0,0,0.08);
  -webkit-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  -o-transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  display: inline-block;
  margin: 15px 1.25%;
  cursor: pointer;
}
.box:hover {
  -webkit-box-shadow: 0 40px 40px rgba(0,0,0,0.16);
          box-shadow: 0 40px 40px rgba(0,0,0,0.16);
}
.box > .content{
  position: absolute;
  top: 220px;
}
.content ul li{
  margin: 10px 0 10px -25px;
}
.box button{
  width: calc(100% - 40px);
  height: 45px;
  border-radius: 7px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  bottom: 10px;
  border: 2px solid #2874ff;
  background: transparent;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.box button:hover{
  background: #2874ff;
  color: #fff;
}

.box .meta {
  position: absolute;
  top: 11.7%;
  padding: 0;
}
.box .meta h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 16px;
  color: #666;
  padding: 0;
}
.box .meta h2 {
  display: block;
  margin-top: 0%;
  font-weight: 700;
  font-size: 75px;
  color: #333;
}
.box h3 {
  position: absolute;
  top: 4.5%;
  right: 15px;
  color: #00d1b2;
  font-size: 20px;
  font-weight: 400;
}
.box h3.down {
  color: #ff4c4c;
}
.box h3.down:before {
  content: "";
  position: relative;
  top: 19px;
  right: 4px;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 13px solid #ff4c4c;
  display: none;
}
.box h3.up:before {
  content: "";
  position: relative;
  top: -19px;
  right: 4px;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-bottom: 13px solid #00d1b2;
  display: none;
}
.box h4{
  margin-top: -60px;
}


#section2{
  position: absolute;
  z-index: 99;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  top: 80px;
}
#section2 .leftCol{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
}
#section2 .rightCol{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width: 875px){
  #section2 .leftCol{
    width: 100vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #section2 .rightCol{
    width: 100vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#section2 form{
  max-width: 400px;
  height: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  -webkit-box-shadow: 0 20px 20px rgba(0,0,0,0.08);
          box-shadow: 0 20px 20px rgba(0,0,0,0.08);
  border-radius: 5px;
  position: relative;
}
span#edit{
  position: absolute;
  right: 10px;
  top: 35px;
  cursor: pointer;
  padding: 5px 5px;
  color: #efefef;
  background: #2874ff;
  border-radius: 5px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
span#edit:hover{
  background: #0652dd;
}
#section2 form input[type="text"]{
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.2);
  text-align: center;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #111;
  margin: 2.5px 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

#section2 form input[type="text"]:focus{
  border-color: #2874ff;
}
#section2 form input[type="number"]{
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 5px;
  font-size: 25px;
  width: 30px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -moz-appearance:textfield;
  text-align: left;
  margin-top: 20px;
  margin-right: 5px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
#section2 form input[type="number"]:focus{
  border-color: #2874ff;
}
#address{

}
#message{
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.2);
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  /* height: 135px; */
  margin-bottom: 10px;
}
#lblAGB a{
  text-decoration: none;
  color: blue;
}
#lblAGB{
  margin-bottom: 20px;
  margin-left: 5px;
}
#section2 form input[type="submit"]{
  background: #2874ff;
  border-radius: 5px;
  border: none;
  height: 45px;
  color: white;
  width: calc(100% - 20px);
  cursor: pointer;
  margin-top: 20px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
#section2 form input[type="submit"]:hover{
  background: #0652dd;
}

.footer{
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.2);
  min-height: 40px;
  width: 100vw;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.5);
          box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          z-index: 999;
}

.footer ul{
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0 0 0 -40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer ul li{
  margin: 5px 20px;
}
.footer ul li a{
  text-decoration: none;
}
.footer ul li a:active{
  color: purple;
}
