@charset "UTF-8";
/*------------------------------------------------------------------
    (colors, typography, margins & padding)
------------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

html, 
html a, 
body {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: Raleway, sans-serif;
  padding: 0;
  margin: 0;
  padding-right: 0 !important;
}

p {
  font-size: 16px;
  font-weight: 400;
  /*font-family: Raleway, sans-serif;*/
  color: #a6a7aa;
  line-height: 1.4;
  margin-bottom: 15px;
}

em,
li,
li a {
  font-size: 16px;
  font-weight: 500;
  /*font-family: Raleway, sans-serif;*/
  color: #515769;
}

a {
  /*font-family: Raleway, sans-serif;*/
  color: #81848f;
  outline: 0;
}

a:focus,
a:hover,
a:active {
  outline: 0;
  color: #626469;
  text-decoration: none;
}

.link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  /*font-family: Raleway, sans-serif;*/
  text-transform: uppercase;
}

.link:after {
  content: " ";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 10px;
  height: 2px;
  background: #17bed2;
  margin-top: -1px;
}

span {
  font-size: 14px;
  font-weight: 400;
  /*font-family: Raleway, sans-serif;*/
  color: #bfc1c7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  /*font-family: Raleway, sans-serif;*/
  color: #515769;
  line-height: 1.4;
  margin: 0 0 15px;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: #515769;
}

h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover {
  color: #999caa;
  text-decoration: none;
}

h1 > a:focus,
h2 > a:focus,
h3 > a:focus,
h4 > a:focus,
h5 > a:focus,
h6 > a:focus {
  text-decoration: none;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 22px;
}

input[type="text"]:active,
input[type="search"]:active,
input[type="url"]:active,
input[type="email"]:active,
input[type="password"]:active,
textarea:active,
select:focus {
  outline: none;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
}


/* Selection */
::selection {
  color: #fff;
  background: #17bed2;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #17bed2;
  text-shadow: none;
}

::-moz-selection {
  color: #fff;
  background: #17bed2;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

/* Section Seperator */
.section-seperator {
  border-bottom: 1px solid #edf0f2;
}

/* Content Wrapper Link */
.content-wrapper-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 3;
  text-decoration: none;
}

/*--------------------------------------------------
    [Back To Top Theme Button]
----------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  z-index: 9;
  width: 50px;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 3;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #17bed2;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  padding: 5px;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  transform: translateY(50px);
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.back-to-top:focus,
.back-to-top:hover {
  color: #fff;
  text-decoration: none;
}

/* The Button Becomes Visible */
.back-to-top.back-to-top-is-visible {
  visibility: visible;
  opacity: 0.7;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.back-to-top.back-to-top-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.back-to-top.back-to-top-fade-out {
  opacity: .5;
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.back-to-top.back-to-top-fade-out:hover {
  opacity: 1;
}

/*------------------------------------------------------------------
    [Blockquote]
------------------------------------------------------------------*/
.blockquote {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  /*font-family: Raleway, sans-serif;*/
  color: #a6a7aa;
  line-height: 1.4;
  border-left: none;
  margin-left: 35px;
}

.blockquote:before {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 70px;
  display: inline-block;
  color: #17bed2;
  content: '“';
}

/*------------------------------------------------------------------
    [Button]
------------------------------------------------------------------*/
.btn-theme {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  text-align: center;
  background-image: none;
  border-style: solid;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-theme:focus,
.btn-theme:active:focus,
.btn-theme.active:focus,
.btn-theme.focus,
.btn-theme:active.focus,
.btn-theme.active.focus {
  outline: none;
}

.btn-theme:hover {
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme.focus {
  text-decoration: none;
}

.btn-theme:active,
.btn-theme.active {
  background-image: none;
  outline: 0;
}

.btn-theme.disabled,
.btn-theme[disabled],
fieldset[disabled] .btn-theme {
  cursor: not-allowed;
  box-shadow: none;
  opacity: .65;
  pointer-events: none;
}

.btn-base-bg {
  color: #fff;
  background: #17bed2;
  border-color: transparent;
  border-width: 0;
}

.btn-base-bg:hover,
.btn-base-bg:focus,
.btn-base-bg.focus {
  color: #fff;
  background: #63cbd7;
  border-color: transparent;
}

.btn-theme-sm {
  font-size: 13px;
  font-weight: 600;
  padding: 15px 40px;
}

button:focus {
  outline: none;
}

.btn-style {
  border: 1px solid #17bed2;
  background: #17bed2;
  color: #fff;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.btn-style:hover {
  border: 1px solid #17bed2;
  background: #fff;
  color: #17bed2;
  box-shadow: 2px 2px 10px 2px rgba(23, 190, 210, 0.25);
}

/*------------------------------------------------------------------
    [Text Colors]
------------------------------------------------------------------*/
.color-base {
  color: #17bed2;
}

.color-white {
  color: #fff;
}

.color-heading {
  color: #515769;
}

.color-subtitle {
  color: #a6a7aa;
}

.color-link {
  color: #81848f;
}

.color-link-hover {
  color: #999caa;
}

.color-sky-light {
  color: #fafafa;
}

/*------------------------------------------------------------------
    [Background Colors]
------------------------------------------------------------------*/
.bg-color-base {
  background: #17bed2;
}

.bg-color-white {
  background: #fff;
}

.bg-color-heading {
  background: #515769;
}

.bg-color-subtitle {
  background: #a6a7aa;
}

.bg-color-link {
  background: #81848f;
}

.bg-color-link-hover {
  background: #999caa;
}

.bg-color-sky-light {
  background: #fafafa;
}

/*--------------------------------------------------
    [Font Weight]
----------------------------------------------------*/
.fweight-300 {
  font-weight: 300 !important;
}

.fweight-400 {
  font-weight: 400 !important;
}

.fweight-500 {
  font-weight: 500 !important;
}

.fweight-600 {
  font-weight: 600 !important;
}

.fweight-700 {
  font-weight: 700 !important;
}

/*------------------------------------------------------------------
    [Full Width]
------------------------------------------------------------------*/
.full-width {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------
    [Height]
----------------------------------------------------*/
.height-100 {
  height: 100px !important;
}

.height-200 {
  height: 200px !important;
}

.height-300 {
  height: 300px !important;
}

/*------------------------------------------------------------------
    [Form Control]
------------------------------------------------------------------*/

.form-control::-moz-placeholder {
  color: #a6a7aa;
}

.form-control::-ms-input-placeholder {
  color: #a6a7aa;
}

.form-control::-webkit-input-placeholder {
  color: #a6a7aa;
}

.form-control:focus {
  color: #515769;
  border-color: #17bed2;
  /*box-shadow: 0 0 0 0.2rem rgba(23, 190, 210, 0.25);*/
  box-shadow: 0 0 9px rgba(23, 190, 210, 0.25);
  /*box-shadow: none;*/
}

.form-control:focus::-moz-placeholder {
  color: #515769;
}

.form-control:focus:-ms-input-placeholder {
  color: #515769;
}

.form-control:focus::-webkit-input-placeholder {
  color: #515769;
}

/*------------------------------------------------------------------
    [Content]
------------------------------------------------------------------*/
.content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.content-md {
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*------------------------------------------------------------------
    [Left margin]
------------------------------------------------------------------*/
.margin-l-0 {
  margin-left: 0 !important;
}

.margin-l-5 {
  margin-left: 5px !important;
}

.margin-l-10 {
  margin-left: 10px !important;
}

.margin-l-20 {
  margin-left: 20px !important;
}

/*------------------------------------------------------------------
    [Right margin]
------------------------------------------------------------------*/
.margin-r-0 {
  margin-right: 0 !important;
}

.margin-r-5 {
  margin-right: 5px !important;
}

.margin-r-10 {
  margin-right: 10px !important;
}

.margin-r-20 {
  margin-right: 20px !important;
}

/*------------------------------------------------------------------
    [Bottom margin]
------------------------------------------------------------------*/
.margin-b-0 {
  margin-bottom: 0 !important;
}

.margin-b-5 {
  margin-bottom: 5px !important;
}

.margin-b-10 {
  margin-bottom: 10px !important;
}

.margin-b-20 {
  margin-bottom: 20px !important;
}

.margin-b-30 {
  margin-bottom: 30px !important;
}

.margin-b-40 {
  margin-bottom: 40px !important;
}

.margin-b-50 {
  margin-bottom: 50px !important;
}

.margin-b-60 {
  margin-bottom: 60px !important;
}

.margin-b-70 {
  margin-bottom: 70px !important;
}

.margin-b-80 {
  margin-bottom: 80px !important;
}

.margin-b-90 {
  margin-bottom: 90px !important;
}

.margin-b-100 {
  margin-bottom: 100px !important;
}

/*------------------------------------------------------------------
    [Top margin below 992px]
------------------------------------------------------------------*/
@media (max-width: 992px) {
  .md-margin-b-0 {
    margin-bottom: 0 !important;
  }
  .md-margin-b-5 {
    margin-bottom: 5px !important;
  }
  .md-margin-b-10 {
    margin-bottom: 10px !important;
  }
  .md-margin-b-20 {
    margin-bottom: 20px !important;
  }
  .md-margin-b-30 {
    margin-bottom: 30px !important;
  }
  .md-margin-b-40 {
    margin-bottom: 40px !important;
  }
  .md-margin-b-50 {
    margin-bottom: 50px !important;
  }
  .md-margin-b-60 {
    margin-bottom: 60px !important;
  }
  .md-margin-b-70 {
    margin-bottom: 70px !important;
  }
  .md-margin-b-80 {
    margin-bottom: 80px !important;
  }
  .md-margin-b-90 {
    margin-bottom: 90px !important;
  }
  .md-margin-b-100 {
    margin-bottom: 100px !important;
  }
}

/*------------------------------------------------------------------
    [Top margin below 768px]
------------------------------------------------------------------*/
@media (max-width: 768px) {
  .sm-margin-b-0 {
    margin-bottom: 0 !important;
  }
  .sm-margin-b-5 {
    margin-bottom: 5px !important;
  }
  .sm-margin-b-10 {
    margin-bottom: 10px !important;
  }
  .sm-margin-b-20 {
    margin-bottom: 20px !important;
  }
  .sm-margin-b-30 {
    margin-bottom: 30px !important;
  }
  .sm-margin-b-40 {
    margin-bottom: 40px !important;
  }
  .sm-margin-b-50 {
    margin-bottom: 50px !important;
  }
  .sm-margin-b-60 {
    margin-bottom: 60px !important;
  }
  .sm-margin-b-70 {
    margin-bottom: 70px !important;
  }
  .sm-margin-b-80 {
    margin-bottom: 80px !important;
  }
  .sm-margin-b-90 {
    margin-bottom: 90px !important;
  }
  .sm-margin-b-100 {
    margin-bottom: 100px !important;
  }
}

/*------------------------------------------------------------------
    [Top margin below 480px]
------------------------------------------------------------------*/
@media (max-width: 480px) {
  .xs-margin-b-0 {
    margin-bottom: 0 !important;
  }
  .xs-margin-b-5 {
    margin-bottom: 5px !important;
  }
  .xs-margin-b-10 {
    margin-bottom: 10px !important;
  }
  .xs-margin-b-20 {
    margin-bottom: 20px !important;
  }
  .xs-margin-b-30 {
    margin-bottom: 30px !important;
  }
  .xs-margin-b-40 {
    margin-bottom: 40px !important;
  }
  .xs-margin-b-50 {
    margin-bottom: 50px !important;
  }
  .xs-margin-b-60 {
    margin-bottom: 60px !important;
  }
  .xs-margin-b-70 {
    margin-bottom: 70px !important;
  }
  .xs-margin-b-80 {
    margin-bottom: 80px !important;
  }
  .xs-margin-b-90 {
    margin-bottom: 90px !important;
  }
  .xs-margin-b-100 {
    margin-bottom: 100px !important;
  }
}

/*------------------------------------------------------------------
    [Footer]
------------------------------------------------------------------*/
.footer .footer-logo {
  width: 85px;
  height: 21px;
  display: block;
}

.footer .footer-text {
  font-size: 18px;
  font-weight: 500;
  color: #626469;
}

.footer .footer-text span {
  font-size: 18px;
  color: #17bed2;
  font-weight: 600;
  text-transform: uppercase;
}

.footer .footer-list {
  margin-bottom: 0;
}

.footer .footer-list-item {
  color: #777984;
  margin-bottom: 15px;
}

.footer .footer-list-item:last-child {
  margin-bottom: 0;
}

.footer .footer-list-item a:hover {
  color: #17bed2;
}


@media (max-width: 768px) {
  .sm-text-center {
    text-align: center !important;
  }

  .footer .footer-logo {
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------
    [Header]
------------------------------------------------------------------*/

.navbar-brand {
  font-weight: 500;
}

.navbar-brand span {
  color: #17bed2;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link:hover{
  color: #17bed2;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #17bed2;
}

.nav-link-active.active {
  position: relative;
}

.nav-link-active.active:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 2px;
  background: #17bed2;
  content: " ";
  margin-top: -2px;
}

.nav-toggle {
  border: none;
}

.nav-toggle i {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #000;
  transition: all .2s;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.nav-toggle i::before {
  top: -7px;
}

.nav-toggle i::after {
  bottom: -7px;
}

.nav-toggle:hover i::before {
  top: -10px;
}

.nav-toggle:hover i::after {
  bottom: -10px;
}

.nav-toggle:hover i,
.nav-toggle:hover i::before,
.nav-toggle:hover i::after {
  background-color: #17bed2;
}

.nav-toggle.active i {
  background: transparent;
}

.nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

/*------------------------------------------------------------------
    [Work]
------------------------------------------------------------------*/
.work {
  position: relative;
}

.work .work-overlay {
  position: relative;
}

.work .work-overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  content: " ";
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.work .work-content {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  padding: 25px;
  -webkit-transform: translateY(25px);
  -moz-transform: translateY(25px);
  transform: translateY(25px);
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.work:hover .work-overlay:before {
  background: rgba(0, 0, 0, 0.5);
}

.work:hover .work-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

/*--------------------------------------------------
    [Masonry Grid]
----------------------------------------------------*/
.masonry-grid {
  position: relative;
  margin: 0 -2px;
}

.masonry-grid:before, .masonry-grid:after {
  content: " ";
  display: table;
}

.masonry-grid:after {
  clear: both;
}

.masonry-grid .masonry-grid-item {
  display: block;
  float: left;
  vertical-align: top;
  padding: 0 2px;
  margin-bottom: 4px;
}

.masonry-grid .masonry-grid-item.col-12 {
  width: 100%;
}

.masonry-grid .masonry-grid-item.col-11 {
  width: 91.66666667%;
}

.masonry-grid .masonry-grid-item.col-10 {
  width: 83.33333333%;
}

.masonry-grid .masonry-grid-item.col-9 {
  width: 75%;
}

.masonry-grid .masonry-grid-item.col-8 {
  width: 66.66666667%;
}

.masonry-grid .masonry-grid-item.col-7 {
  width: 58.33333333%;
}

.masonry-grid .masonry-grid-item.col-6 {
  width: 50%;
}

.masonry-grid .masonry-grid-item.col-5 {
  width: 41.66666667%;
}

.masonry-grid .masonry-grid-item.col-4 {
  width: 33.33333333%;
}

.masonry-grid .masonry-grid-item.col-3 {
  width: 25%;
}

.masonry-grid .masonry-grid-item.col-2 {
  width: 16.66666667%;
}

.masonry-grid .masonry-grid-item.col-1 {
  width: 8.33333333%;
}

/* Media Queries below 768px */
@media (max-width: 768px) {
  .masonry-grid .masonry-grid-item {
    width: 50%;
  }
  .masonry-grid .masonry-grid-item.col-12,
  .masonry-grid .masonry-grid-item.col-11,
  .masonry-grid .masonry-grid-item.col-10,
  .masonry-grid .masonry-grid-item.col-9,
  .masonry-grid .masonry-grid-item.col-8,
  .masonry-grid .masonry-grid-item.col-7,
  .masonry-grid .masonry-grid-item.col-6,
  .masonry-grid .masonry-grid-item.col-5,
  .masonry-grid .masonry-grid-item.col-4,
  .masonry-grid .masonry-grid-item.col-3,
  .masonry-grid .masonry-grid-item.col-2,
  .masonry-grid .masonry-grid-item.col-1 {
    width: 50%;
  }
}

/* Media Queries below 600px */
@media (max-width: 600px) {
  .masonry-grid .masonry-grid-item {
    width: 100%;
  }
  .masonry-grid .masonry-grid-item.col-12,
  .masonry-grid .masonry-grid-item.col-11,
  .masonry-grid .masonry-grid-item.col-10,
  .masonry-grid .masonry-grid-item.col-9,
  .masonry-grid .masonry-grid-item.col-8,
  .masonry-grid .masonry-grid-item.col-7,
  .masonry-grid .masonry-grid-item.col-6,
  .masonry-grid .masonry-grid-item.col-5,
  .masonry-grid .masonry-grid-item.col-4,
  .masonry-grid .masonry-grid-item.col-3,
  .masonry-grid .masonry-grid-item.col-2,
  .masonry-grid .masonry-grid-item.col-1 {
    width: 100%;
  }
}

/*------------------------------------------------------------------
    [Swiper Slider]
------------------------------------------------------------------*/
.swiper-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-clients-img {
  display: block;
  width: 190px;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  cursor: pointer;
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.swiper-clients-img:hover {
  opacity: .8;
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

/*------------------------------------------------------------------
    [Contact]
------------------------------------------------------------------*/
.contact-list > li {
  font-size: 14px;
  color: #81848f;
  margin-bottom: 10px;
}

.contact-list > li > a {
  font-size: 14px;
  color: #81848f;
  transition: 0.5s all cubic-bezier(0.7, 1, 0.7, 1);
}

.contact-list > li > a:hover {
  color: #17bed2;
}

.pop-up {
  width: 500px;
  margin: 0 auto;
  transform-origin: 10px 10px;
  padding-right: 0 !important;
  animation: drop 0.5s ease-out forwards,
              swing 2s 2s ease forwards,
              origin 1s 5s ease forwards;
}

@keyframes drop {
  0%{
    opacity: 0;
  }
  70%{
    transform: translateY(30%);
  }
  100%{
    transform: translateY(20%);
    opacity: 1;
  }
}

@keyframes swing {
  0%{
    transform: translateY(20%) rotateZ(0deg);
  }
  40%{
    transform: translateY(20%) rotateZ(90deg);
  }
  70%{
    transform: translateY(20%) rotateZ(70deg);
  }
  100%{
    transform: translateY(20%) rotateZ(75deg);
  }
}

@keyframes origin {
  0%{
    transform: translateY(20%) rotateZ(75deg);
  }
  100%{
    transform: translateY(20%) rotateZ(0deg);
  }
}

.modal.fade .modal-dialog {
  transform: none;
}

.pop-up .modal-content {
  border: none;
}

.pop-up .modal-header {
  border: none;
  padding-bottom: 0;
}

.modal-btn {
  padding: 0;
  border: 1px solid #17bed2;
  background: #17bed2;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  cursor: pointer;
  transition: 0.5s all;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  /*padding-bottom: 1px;*/
}

.modal-btn:hover {
  border: 1px solid #17bed2;
  background: #fff;
  color: #17bed2;
  box-shadow: 0px 1px 2px 1px rgba(23, 190, 210, 0.25);
}

.modal-btn i {
  
}

.subscribeForm {
  width: 90%;
  margin: 0 auto;
}

.subscribeForm > div {
  display: flex;
}

.subscribeForm > div > input {
  border-radius: 5px 0 0 5px;
  border-right: none;
  width: 70%;
}

.subscribeForm > div > input:focus {
  box-shadow: 0 0 9px rgba(23, 190, 210, 0.25);
}

.modal-btn-2 {
  border: 1px solid #17bed2;
  background: #17bed2;
  color: #fff;
  border-radius: 0 5px 5px 0;
  width: 30%;
  cursor: pointer;
}

.error-sub-email {
  color: #aa0000;
  font-weight: 500;
  font-size: 18px;
  margin-top: 5px;
  margin-left: 8px;
  opacity: 0;
  transform: translateY(-30px);
  animation: erorrMegEmail 0.5s ease-out 0s forwards;
}

@keyframes erorrMegEmail {
  0%{
    opacity: 0;
    transform: translateY(-30px);
  }
  50%{
    opacity: 0;
  }
  100%{
    transform: translateY(0);
    opacity: 1;
  }
}

@media(max-width: 1024px) {
  .pop-up {
    width: 400px;
  }

  .pop-up .modal-body h2 {
    font-size: 22px;
  }

  .subscribeForm {
    width: 100%;
  }

  .error-sub-email{
    font-size: 16px;
  }
}

@media(max-width: 992px) {
  .pop-up {
    width: 350px;
  }
}

@media(max-width: 768px) {
  .pop-up {
    width: 300px;
  }

  .pop-up .modal-body h2 {
    font-size: 18px;
  }

  .subscribeForm > div {
    display: block;
  }

  .subscribeForm > div > input {
    border-radius: 3px;
    border-right: 1px solid #ced4da;
    width: 100%;
  }

  .modal-btn-2 {
    width: 100%;
    border-radius: 5px;
    padding: 5px 0;
    margin-top: 5px;
  }
}

@media(max-width: 700px) {
  .pop-up {
    animation: none;
    transform: translateY(20%);
  }
}