@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Goldman:wght@400;700&family=Marcellus+SC&family=Play:wght@400;700&family=Russo+One&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');


/********
font-family: 'Saira', sans-serif;
font-family: 'Arimo', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Alata', sans-serif;
font-family: 'PT Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Dosis', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Goldman', cursive;

********/





*,
*::before,
*::after {
  box-sizing: border-box;
}

.gallery img {
  display: block;
}

.gallery {
  position: relative;
  z-index: 2;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  background: #000;
  border-radius: 10px;
}
.gallery.pop {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.gallery figure {
  -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery figure img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.gallery figure figcaption {
  display: none;
}

.popup {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  opacity: 0;
  -webkit-transition: opacity .5s ease-in-out .2s;
  transition: opacity .5s ease-in-out .2s;
}
.popup.pop {
  opacity: 1;
  -webkit-transition: opacity .2s ease-in-out 0s;
  transition: opacity .2s ease-in-out 0s;
}
.popup.pop figure {
  margin-top: 0;
  opacity: 1;
}
.popup figure {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  margin-top: 30px;
  opacity: 0;
  -webkit-animation: poppy 500ms linear both;
          animation: poppy 500ms linear both;
}
.popup figure img {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), 0 6px 30px rgba(0, 0, 0, 0.4);
}
.popup figure figcaption {
  position: absolute;
  bottom: 50px;
  background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.78));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  z-index: 2;
  width: 100%;
  border-radius: 0 0 15px 15px;
  padding: 100px 20px 20px 20px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
}
.popup figure figcaption small {
  font-size: 11px;
  display: block;
  text-transform: uppercase;
  margin-top: 12px;
  text-indent: 3px;
  opacity: .7;
  letter-spacing: 1px;
}
.popup figure .shadow {
  position: relative;
  z-index: 1;
  top: -15px;
  margin: 0 auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 98%;
  height: 50px;
  opacity: .6;
  -webkit-filter: blur(15px) contrast(2);
          filter: blur(15px) contrast(2);
}
.popup .close {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: url(#close);
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.popup .close svg {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes poppy {
  0% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  3.4% {
    -webkit-transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, -94.672, -91.573, 0, 1);
            transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, -94.672, -91.573, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.408, 0, 0, 0, 0, 0.54, 0, 0, 0, 0, 1, 0, -122.527, -121.509, 0, 1);
            transform: matrix3d(0.408, 0, 0, 0, 0, 0.54, 0, 0, 0, 0, 1, 0, -122.527, -121.509, 0, 1);
  }
  4.7% {
    -webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, -134.908, -134.843, 0, 1);
            transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, -134.908, -134.843, 0, 1);
  }
  6.81% {
    -webkit-transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, -197.77, -200.879, 0, 1);
            transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, -197.77, -200.879, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.82, 0, 0, 0, 0, 1.097, 0, 0, 0, 0, 1, 0, -245.972, -246.757, 0, 1);
            transform: matrix3d(0.82, 0, 0, 0, 0, 1.097, 0, 0, 0, 0, 1, 0, -245.972, -246.757, 0, 1);
  }
  9.41% {
    -webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, -265.038, -262.804, 0, 1);
            transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, -265.038, -262.804, 0, 1);
  }
  10.21% {
    -webkit-transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, -282.462, -275.93, 0, 1);
            transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, -282.462, -275.93, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1.094, 0, 0, 0, 0, 1.328, 0, 0, 0, 0, 1, 0, -328.332, -298.813, 0, 1);
            transform: matrix3d(1.094, 0, 0, 0, 0, 1.328, 0, 0, 0, 0, 1, 0, -328.332, -298.813, 0, 1);
  }
  13.61% {
    -webkit-transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, -336.934, -299.783, 0, 1);
            transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, -336.934, -299.783, 0, 1);
  }
  14.11% {
    -webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, -342.273, -299.395, 0, 1);
            transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, -342.273, -299.395, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1.205, 0, 0, 0, 0, 1.252, 0, 0, 0, 0, 1, 0, -361.606, -281.592, 0, 1);
            transform: matrix3d(1.205, 0, 0, 0, 0, 1.252, 0, 0, 0, 0, 1, 0, -361.606, -281.592, 0, 1);
  }
  17.52% {
    -webkit-transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, -362.348, -278.88, 0, 1);
            transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, -362.348, -278.88, 0, 1);
  }
  18.72% {
    -webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, -363.633, -267.15, 0, 1);
            transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, -363.633, -267.15, 0, 1);
  }
  21.32% {
    -webkit-transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, -358.864, -240.617, 0, 1);
            transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, -358.864, -240.617, 0, 1);
  }
  24.32% {
    -webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, -345.164, -216.073, 0, 1);
            transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, -345.164, -216.073, 0, 1);
  }
  25.23% {
    -webkit-transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, -340.193, -210.948, 0, 1);
            transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, -340.193, -210.948, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1.075, 0, 0, 0, 0, 0.898, 0, 0, 0, 0, 1, 0, -322.647, -202.048, 0, 1);
            transform: matrix3d(1.075, 0, 0, 0, 0, 0.898, 0, 0, 0, 0, 1, 0, -322.647, -202.048, 0, 1);
  }
  29.03% {
    -webkit-transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, -318.884, -201.771, 0, 1);
            transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, -318.884, -201.771, 0, 1);
  }
  29.93% {
    -webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, -314.277, -202.202, 0, 1);
            transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, -314.277, -202.202, 0, 1);
  }
  35.54% {
    -webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, -293.828, -216.499, 0, 1);
            transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, -293.828, -216.499, 0, 1);
  }
  36.74% {
    -webkit-transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, -291.489, -220.242, 0, 1);
            transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, -291.489, -220.242, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(0.962, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -288.62, -227.228, 0, 1);
            transform: matrix3d(0.962, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -288.62, -227.228, 0, 1);
  }
  41.04% {
    -webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, -288.247, -229.999, 0, 1);
            transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, -288.247, -229.999, 0, 1);
  }
  44.44% {
    -webkit-transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, -289.763, -232.215, 0, 1);
            transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, -289.763, -232.215, 0, 1);
  }
  52.15% {
    -webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, -297.363, -226.449, 0, 1);
            transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, -297.363, -226.449, 0, 1);
  }
  59.86% {
    -webkit-transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, -301.813, -222.759, 0, 1);
            transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, -301.813, -222.759, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, -302.102, -222.926, 0, 1);
            transform: matrix3d(1.007, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, -302.102, -222.926, 0, 1);
  }
  63.26% {
    -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, -302.171, -223.276, 0, 1);
            transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, -302.171, -223.276, 0, 1);
  }
  75.28% {
    -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -300.341, -225.696, 0, 1);
            transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -300.341, -225.696, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.61, -225.049, 0, 1);
            transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.61, -225.049, 0, 1);
  }
  85.49% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.599, -224.94, 0, 1);
            transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.599, -224.94, 0, 1);
  }
  90.69% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, -299.705, -224.784, 0, 1);
            transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, -299.705, -224.784, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, -225, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, -225, 0, 1);
  }
}

@keyframes poppy {
  0% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  3.4% {
    -webkit-transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, -94.672, -91.573, 0, 1);
            transform: matrix3d(0.316, 0, 0, 0, 0, 0.407, 0, 0, 0, 0, 1, 0, -94.672, -91.573, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.408, 0, 0, 0, 0, 0.54, 0, 0, 0, 0, 1, 0, -122.527, -121.509, 0, 1);
            transform: matrix3d(0.408, 0, 0, 0, 0, 0.54, 0, 0, 0, 0, 1, 0, -122.527, -121.509, 0, 1);
  }
  4.7% {
    -webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, -134.908, -134.843, 0, 1);
            transform: matrix3d(0.45, 0, 0, 0, 0, 0.599, 0, 0, 0, 0, 1, 0, -134.908, -134.843, 0, 1);
  }
  6.81% {
    -webkit-transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, -197.77, -200.879, 0, 1);
            transform: matrix3d(0.659, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, -197.77, -200.879, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.82, 0, 0, 0, 0, 1.097, 0, 0, 0, 0, 1, 0, -245.972, -246.757, 0, 1);
            transform: matrix3d(0.82, 0, 0, 0, 0, 1.097, 0, 0, 0, 0, 1, 0, -245.972, -246.757, 0, 1);
  }
  9.41% {
    -webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, -265.038, -262.804, 0, 1);
            transform: matrix3d(0.883, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, -265.038, -262.804, 0, 1);
  }
  10.21% {
    -webkit-transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, -282.462, -275.93, 0, 1);
            transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, -282.462, -275.93, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1.094, 0, 0, 0, 0, 1.328, 0, 0, 0, 0, 1, 0, -328.332, -298.813, 0, 1);
            transform: matrix3d(1.094, 0, 0, 0, 0, 1.328, 0, 0, 0, 0, 1, 0, -328.332, -298.813, 0, 1);
  }
  13.61% {
    -webkit-transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, -336.934, -299.783, 0, 1);
            transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, -336.934, -299.783, 0, 1);
  }
  14.11% {
    -webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, -342.273, -299.395, 0, 1);
            transform: matrix3d(1.141, 0, 0, 0, 0, 1.331, 0, 0, 0, 0, 1, 0, -342.273, -299.395, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1.205, 0, 0, 0, 0, 1.252, 0, 0, 0, 0, 1, 0, -361.606, -281.592, 0, 1);
            transform: matrix3d(1.205, 0, 0, 0, 0, 1.252, 0, 0, 0, 0, 1, 0, -361.606, -281.592, 0, 1);
  }
  17.52% {
    -webkit-transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, -362.348, -278.88, 0, 1);
            transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, -362.348, -278.88, 0, 1);
  }
  18.72% {
    -webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, -363.633, -267.15, 0, 1);
            transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, -363.633, -267.15, 0, 1);
  }
  21.32% {
    -webkit-transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, -358.864, -240.617, 0, 1);
            transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, -358.864, -240.617, 0, 1);
  }
  24.32% {
    -webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, -345.164, -216.073, 0, 1);
            transform: matrix3d(1.151, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, -345.164, -216.073, 0, 1);
  }
  25.23% {
    -webkit-transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, -340.193, -210.948, 0, 1);
            transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, -340.193, -210.948, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1.075, 0, 0, 0, 0, 0.898, 0, 0, 0, 0, 1, 0, -322.647, -202.048, 0, 1);
            transform: matrix3d(1.075, 0, 0, 0, 0, 0.898, 0, 0, 0, 0, 1, 0, -322.647, -202.048, 0, 1);
  }
  29.03% {
    -webkit-transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, -318.884, -201.771, 0, 1);
            transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, -318.884, -201.771, 0, 1);
  }
  29.93% {
    -webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, -314.277, -202.202, 0, 1);
            transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, -314.277, -202.202, 0, 1);
  }
  35.54% {
    -webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, -293.828, -216.499, 0, 1);
            transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, -293.828, -216.499, 0, 1);
  }
  36.74% {
    -webkit-transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, -291.489, -220.242, 0, 1);
            transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, -291.489, -220.242, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(0.962, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -288.62, -227.228, 0, 1);
            transform: matrix3d(0.962, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -288.62, -227.228, 0, 1);
  }
  41.04% {
    -webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, -288.247, -229.999, 0, 1);
            transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, -288.247, -229.999, 0, 1);
  }
  44.44% {
    -webkit-transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, -289.763, -232.215, 0, 1);
            transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, -289.763, -232.215, 0, 1);
  }
  52.15% {
    -webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, -297.363, -226.449, 0, 1);
            transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, -297.363, -226.449, 0, 1);
  }
  59.86% {
    -webkit-transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, -301.813, -222.759, 0, 1);
            transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, -301.813, -222.759, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, -302.102, -222.926, 0, 1);
            transform: matrix3d(1.007, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, -302.102, -222.926, 0, 1);
  }
  63.26% {
    -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, -302.171, -223.276, 0, 1);
            transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, -302.171, -223.276, 0, 1);
  }
  75.28% {
    -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -300.341, -225.696, 0, 1);
            transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -300.341, -225.696, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.61, -225.049, 0, 1);
            transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.61, -225.049, 0, 1);
  }
  85.49% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.599, -224.94, 0, 1);
            transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -299.599, -224.94, 0, 1);
  }
  90.69% {
    -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, -299.705, -224.784, 0, 1);
            transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, -299.705, -224.784, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, -225, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, -225, 0, 1);
  }
}

.video {
    height: 0;
    position: relative;
    padding-bottom: 56.25%; /* ???? ????? 16/9, ?? 9/16*100 = 56.25%. ????? ? ? 4/3 - 3/4*100 = 75% */
}
.video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.backg{
    background: #000;
    padding: 20px;
    border-radius: 10px;
}

*{
	margin: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}


.tec-nav img{
    width: 190px;
}
.navbar-brand {
    padding: 10px 10px !important;
}
.tec-nav .navbar-default {
    background-color: #000;
    border-color: #000;
    border-radius: 0px;
    height: 97px;
}
.tec-nav .navbar-nav>li>a {
    padding-top: 37px;
    padding-bottom: 37px;
    font-family: 'Goldman', cursive;
    font-size: 16px;
}
.tec-nav .navbar-default .navbar-nav>li>a {
    color: #f3df2d;
}
.tec-nav .nav.navbar-nav.navbar-right li>a {
    position: relative;
    display: block;
    padding: 24px 5px !important;
    font-size: 26px;
    font-weight: 600;
}
.tec-nav .nav.navbar-nav.navbar-right li>a .fa{
    font-size: 20px;
}
.navbar-right {
    float: right!important;
    margin-right: -15px;
    margin-top: 15px;
}




@media screen and (min-width:768px){
    .navbar-brand-centered {
        position: absolute;
        left: 50%;
        display: block;
        width: 160px;
        text-align: center;
        background-color: #000;
    }
    .navbar>.container .navbar-brand-centered, 
    .navbar>.container-fluid .navbar-brand-centered {
        margin-left: -80px;
    }
}

.makes-banner{
    margin-top: -20px;
}
.pdng{
    padding: 0px;
}
.make-content img{
    width: 100%;
}
.makes-banner a{
    text-decoration: none;
}
.text {
    margin-top: -250px;
    text-align: center;
}
.text h1{
    text-decoration: none;
    font-family: 'Goldman', cursive;
    color: #f3df2d;
    text-shadow: 2px 2px 5px #000;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: -10px;
}
.btnn a button{
    background-color: #f3df2d;
    padding: 10px 30px;
    border: 1px solid #f3df2d;
    color: #000;
    margin-top: 30px;
    transition-duration: 0.5s;
    letter-spacing: 1px;
}
.make-content:hover button{
    background-color: #000;
    color: #f3df2d;
}

.about-b {
    height: 361px;
    margin-top: -22px;
    background: url(../images/abt-bg.jpg) 0% 0% / cover no-repeat;
}
.about-b.service {
    background: url(../images/services-bg.jpg) 0% 0% / cover no-repeat;
}
.about-b.cntt{
    background: url(../images/cnt-bg.jpg) 0% 0% / cover no-repeat;
}
.about-b h1 {
    color:#f3df2d;
    font-weight: 600;
    font-family: 'Goldman', cursive;
    font-size: 50px;
    margin-top: 160px;
}
.abtcnt .line {
    width: 60px;
    background: #f3df2d;
    padding: 2px;
    margin: 0px;
}
.about-b .line {
    width: 60px;
    background: #f3df2d;
    padding: 2px;
    margin: 0px;
}
.abtcnt {
    margin-top: 50px;
    margin-bottom: 50px;
}
.abtcnt h2 {
    color: rgb(17, 17, 17);
    font-weight: 600;
    font-size: 26px;
    font-family: 'Goldman', cursive;
}
.abtcnt p {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Dosis', sans-serif;
}
.for {
    margin-top: 20px;
    margin-bottom: 20px;
}
.pic {
    float: left;
    margin-right: 15px;
}
.abtpic img{
    width: 100%;
}

.txt h4 {
    font-weight: 600;
    color: #000;
    font-family: 'Dosis', sans-serif;
}
.txt p {
    margin-top: 0px;
}
.tec-footer.other{
    padding-top: 50px;
}
.services {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9f9;
}
.services h1 {
    font-weight: 600;
    font-family: 'Goldman', cursive;
    color: #000;
}
.line {
    width: 60px;
    background: #f3df2d;
    padding: 2px;
    margin: 20px auto;
}
.full {
    transition-duration: 0.5s;
    margin-top: 30px;
}
.full:hover {
    margin-top: 10px;
}
.nbr h2 {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #f3df2d;
    z-index: 999999;
    position: relative;
    font-family: Dosis, sans-serif;
    background: #000;
    border-radius: 30px;
    margin: 0px auto -20px;
    font-size: 18px;
}
.bx {
    box-shadow: rgb(204, 204, 204) 0px 0px 15px;
}
.bx {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-bottom: 3px solid #000;
    width: 100%; 
}
.bx img {
    width: 65px;
    margin: 30px 10px 0px;
}
.bx h3 {
    font-size: 20px;
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
}
.bx p {
    line-height: 28px;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
}

.cnt-cnt {
    margin-top: 70px;
    margin-bottom: 70px;
}
.cnt-dtl {
    border: 1px solid #ccc;
    padding: 20px 20px 32px;
    background: #000;
}
.cnt-dtl h3 {
    font-weight: 700;
    color: #f3df2d;
    font-family: 'Dosis', sans-serif;
}
.cnt-dtl p{
    color: #fff;
    font-family: 'Dosis', sans-serif;
    font-size: 17px;
    margin-top: -8px;
}
.abc {
    margin-top: 52px;
}
.icn {
    float: left;
}
.icn .fa {
    font-size: 20px;
    width: 40px;
    height: 45px;
    border: 1px solid#f3df2d;
    line-height: 45px;
    text-align: center;
    margin-top: 1px;
    margin-right: 20px;
    color: #f3df2d;
}
.icnt h5 {
    font-size: 14px;
    font-weight: 700;
    color: #f3df2d;
    font-family: 'Dosis', sans-serif;
}
.icnt p a {
    text-decoration: none;
}
.icnt p a span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}
.cnt-dtl.frm {
    background: #000;
}
.mapss img{
    width: 100%;
}
.form-control {
    display: block;
    width: 100%;
    height: 37px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    margin-top: 16px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0px;
}
.cnt-cnt textarea.form-control {
  height: 100px;
  margin-bottom: -10px;
}
.g-recaptcha{
  
}
.btne {
    text-align: center;
}
.btne a button {
    background: #f3df2d;
    border: 1px solid#f3df2d;
    color: #000;
    padding: 13px 35px;
    border-radius: 30px;
    margin-top: -14px;
    transition-duration: 0.5s;
}
.btne a button:hover {
    background: #333;
    border: 1px solid#f3df2d;
    color: #fff;
}

.serv-contnent {
    background: #f8f9fa;
    padding: 30px;
}
.serv-contnent h2 {
    text-align: center;
    font-weight: 700;
    color: #12203d;
    font-family: 'Goldman', cursive;
}
.serv-contnent p {
    text-align: center;
    font-size: 18px;
    font-family: 'Dosis', sans-serif;
    line-height: 22px;
}
.major h2 {
    text-align: left;
}
.major p {
    text-align: left;
    font-family: 'Dosis', sans-serif;
    line-height: 28px;
    font-weight: 600;
}
.major p .fa {
    color: #f7a801;
    font-size: 20px;
    font-weight: 500;
}
.serv-banner img {
    background-size: cover;
    width: 100%;
}



.sizes-page {
    background: url(../images/sizes-banner.jpg) no-repeat;
    height: 600px;
    padding: 20px;
    text-align: center;
    margin-top: -20px;
    background-size: cover;
}
.sizes-content {
    margin-top: 40px;
}
.sizes-content.siz{
    padding-top: 50px;
}
.sizes-content h1 {
    color: #fff;
    font-family: 'Goldman', cursive;
    font-weight: 700;
}
.sizes-content h1 span {
    color: #f3df2d;
}
.sizes-content p {
    color: #fff;
    font-size: 20px;
    font-family: 'Dosis', sans-serif;
    letter-spacing: 1px;
}
.sizes-content p.regg{
    color: #f3df2d;
    margin-top: 30px;
}
.sizes-page .dvla-forms {
    text-align: center;
}
.sizes-page .text-center {
    text-align: center;
}
.sizes-page .dvla-width {
    width: 346px;
    margin: 0 auto;
}
.sizes-page .dvla-main {
    background: #005baf;
    border-radius: 7px 7px 7px 7px;
    padding: 4px;
    height: 90px;
    width: 350px;
}
.sizes-page .gb {
    float: left;
}
.sizes-page .reg-input-new1 {
    height: 82px;
    width: 289px;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    background: #f3df2d;
    text-transform: uppercase;
    border: 1px solid #f3df2d;
    outline: none;
    border-radius: 0px 7px 7px 0px;
    font-family: 'Dosis', sans-serif;
    color: #000;
}
.bttn a button {
    background: #f3df2d;
    border: 1px solid #f3df2d;
    color: #000;
    padding: 10px 40px;
    font-size: 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-family: 'Dosis', sans-serif;
    letter-spacing: 0.2px;
    transition-duration: 0.5s;
}
.bttn a button:hover {
    background: #000;
    border: 1px solid #f3df2d;
    color: #fff;
}
.sizes-page .form-group {
    margin-bottom: 15px;
}
.sizes-form .form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 40px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.sizes-form .bttn a button:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #12203d;
}
.sizes-form .bttn a button {
    background: #f3df2d;
    border: 1px solid #f3df2d;
    color: #000;
    padding: 10px 40px;
    font-size: 19px;
    margin-top: 15px;
    border-radius: 40px;
    width: 100%;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}






.faq-heading h2 {
    font-family: 'Goldman', cursive;
    text-align: center;
    margin-top: 0px;
    font-weight:700;
}
.faqs-sec{
    margin-bottom: 70px;
}
.faqs-sec .content {
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  padding: 0px;
}

.faqs-sec .centerplease {
  margin: 0 auto;
  width: 100vw;
  font-size: 150%;
  text-align: center;
  margin-top: 3em;
  padding: 5px;
}

.faqs-sec .question {
    position: relative;
    background: transparent;
    margin: 0;
    padding: 17px 10px 17px 35px;
    display: block;
    width: 100%;
    cursor: pointer;
    color: #333;
    margin-top: 10px;
    font-size: 17px;
    letter-spacing: 0.5px;
    font-family: 'Goldman', cursive;
}

.ans-bx{
    border-bottom: 1px solid#999;
}
.lftques{
    margin-left: 0px;
}
.faqs-sec .answers {
  background: #fff;
  padding: 0px 15px;
  margin: 0px;
  height: 0;
  overflow: hidden;
  z-index: 15;
  position: relative;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  font-family: 'Dosis', sans-serif;
}

.faqs-sec .questions:checked ~ .answers {
    height: auto;
    opacity: 1;
    padding: 10px 10px 10px 0px;
    font-size: 18px;
    line-height: 30px;
    border-radius: 0px;
}


.faqs-sec .plus {
  position: absolute;
  color: #333;
  margin: 10px 10px 10px 0px;
  z-index: 15;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.faqs-sec .questions:checked ~ .plus {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faqs-sec .questions {
  display: none;
}

.faqs-sec .bene-cont.faq h3 {
    text-align: left;
    color: #185e94;
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}




.cont-nmbr {
    margin-top: 20px;
}
.cont-nmbr p {
    font-size: 20px;
    font-weight: 600;
}
.cont-nmbr p span {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Dosis', sans-serif;
    color: #f3df2d;
}
.find {
    text-align: center;
    background: #f8f9f9;
    padding: 40px 20px;
}
.find h2 {
    font-weight: 700;
    color: #000;
    font-family: 'Goldman', cursive;
}
.find h2 span {
    color: #f3df2d;
}
.find img {
    width: 140px;
    margin-top: -20px;
}
.buttons a button {
    background: #000;
    border: 1px solid#000;
    font-size: 16px;
    padding: 15px;
    width: 100%;
    color: #f3df2d;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 4px;
    font-family: 'Dosis', sans-serif;
}
.buttons a button:hover {
    background: #000;
    border: 1px solid#000;
    color: #fff;
}
.how img{
    width: 100%;
}
.offer {
    margin-top: 80px;
    margin-bottom: 80px;
    background: #f8f9f9;
    padding: 70px 20px;
    margin-bottom: 0px;
}
.offer-content {
    background: #000;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-family: 'Dosis', sans-serif;
    height: 470px;
}
.offer-content img {
    width: 80px;
    margin-top: 20px;
}
.offer-content h3 {
    font-weight: 700;
    color: #f3df2d;
}
.offer-content p {
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    letter-spacing: 0.5px;
}
.content-portion {
    background: #fff;
    padding: 70px;
}
.content-portion h4 {
    font-size: 24px;
    font-family: 'Goldman', cursive;
    font-weight: 700;
    color: #12203d;
}
.content-portion p {
    font-size: 18px;
    font-family: 'Dosis', sans-serif;
    letter-spacing: 0.2px;
}
.last-form {
    background: url(../images/form-bg.jpg) no-repeat;
    background-size: cover;
    height: 100vh;
    margin-top: -20px;
    padding-top: 20px;
}
.last-frm-content{
    background: #000;
    padding: 30px 50px 50px;
    margin-bottom: 50px;
}
.last-frm-content h1{
    color: #fff;
    font-family: 'Goldman', cursive;
    text-align: center;
    font-size: 30px;
}

.last-frm-content h2{
    color: #fff;
    text-align: center;
    font-family: 'Dosis', sans-serif;
}
.last-frm-content h2.confirm{
    color: #f3df2d;
}
.last-frm-content h1 span{
    color: #f3df2d;
}
.form-content label {
    color: #f3df2d;
}
.form-content .input-group {
    width: 100%;
    margin-bottom: 20px;
}
.form-content .input-group-addon {
    border-radius: 0px;
    width: 40px;
}
.form-content .form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-top: 0px;
    font-family: 'Dosis', sans-serif;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.submit-btn{
    text-align: center;
}
.submit-btn a button {
    background: #f3df2d;
    border: 1px solid#f3df2d;
    color: #000;
    padding: 14px 60px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px auto;
    border-radius: 2px;
    font-family: 'Dosis', sans-serif;
    transition-duration: 0.5s;
}
.submit-btn a button:hover {
    background: #111;
    border: 1px solid#f3df2d;
    color: #fff;
}
.thankss{
    background: url(../images/form-bg.jpg) no-repeat;
    background-size: cover;
    height: 100vh;
    margin-top: -20px;
    padding-top: 60px;
}
.thanks-content{
    background: #000;
    padding: 30px 30px 60px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
}
.thanks-content h1{
    font-size:80px;
    font-family: 'Goldman', cursive;
    color: #f3df2d;
    font-weight: 600;
}
.thanks-content h2{
    font-size:30px;
    font-family: 'Dosis', sans-serif;
    color: #f3df2d;
    font-weight: 600;
}
.thanks-content p{
    font-size:18px;
    font-family: 'Dosis', sans-serif;
    color: #fff;
}
.thanks-content .buton .btn-change5 {
    height: 55px;
    width: 260px;
    background: #f3df2d;
    margin: 10px 0px 0px;
    float: none;
    font-size: 23px;
    border: 1px solid #f3df2d;
    color: #000;
    transition-duration: 0.5;
    border-radius: 30px;
    font-family: 'Dosis', sans-serif;
    font-weight: 500;
    transition-duration: 0.5s;
}
.thanks-content .buton .btn-change5:hover {
    background: #111;
    color: #fff;
}

.policy-content{
    margin-top: 50px;
    margin-bottom: 50px;
}
.policy-content h1 {
    font-family: 'Goldman', cursive;
    font-weight: 600;
    font-size: 30px;
    margin-top: 20px;
    color: #000;
}
.policy-content h2 {
    font-family: 'Goldman', cursive;
    font-weight: 600;
    font-size: 30px;
    margin-top: 30px;
    color: #000;
}
.policy-content p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Dosis', sans-serif;
    color: #000;
}


.tec-footer.hoome{
    margin-top: 133px;
}


.tec-footer{
    
    background-color: #f1f1f1;
}
.f-heading h2{
    font-size: 15px;
    font-weight: 600;
    color: #000;
    font-family: 'Dosis', sans-serif;
    margin-bottom: 20px;
}
.f-heading p a{
    color: #333;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}
.f-heading p{
    color: #333;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
    line-height: 26px;
}
.conver a{
    display: block;
    font-family: 'Dosis', sans-serif;
    margin-bottom: 5px;
}
.conver a .fa{
    background-color: #000;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color:#f3df2d;
    font-size: 20px;
    text-decoration: none;
}
.conver a:hover .fa{
    background-color: #f3df2d;
    color:#000;
}
.conver a{
    text-decoration: none;
    color: #333;
    font-weight: 600;
}
.down-nav {
    margin-top: 20px;
    border-top: 1px solid#ccc;
    border-bottom: 1px solid#ccc;
    padding: 15px;
    text-align: center;
}
.down-nav a{
    margin-right: 20px;
    color: #333;
    font-size: 13px;
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
}
.copy {
    text-align: center;
    padding: 20PX 10px 10px;
    background: #000;
    color: #f3df2d;
}
.copy p{
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}


#bottom-buttons-container .bottom-buttons{
    position: fixed;
    bottom: 30px;
    left: 25px;
    z-index: 9999;
    background: black;
    height: 60px;
    width: 60px;
    color: white;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
}
#bottom-buttons-container .bottom-button .tooltip{
    position: absolute !important;
    top: -20px !important;
    left: calc(100% + 5px) !important;
    z-index: 3 !important;
    background: #00E676 !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) !important;
    padding: 6px 12px !important;
    border-radius: 30px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    opacity: 0 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    transition: 0s !important;
    color: #fff;
}
#bottom-buttons-container .bottom-button:hover .tooltip{
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: all 0.4s ease !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
#bottom-buttons-container .whatsappp {
    bottom: 8px;
    font-size: 40px;
    background: #00E676;
}
.whatsappp .bx {
    background: transparent !important;
    padding: 0px !important;
    border-bottom: 0px solid #000 !important;
    box-shadow: none !important;
}





@media screen and (min-width: 1px) and (max-width: 767px){
.tec-nav img {
  width: 172px;
}
.tec-nav .navbar-nav {
  margin: 7.5px -15px;
  position: relative;
  z-index: 1;
  background: #000;
}
.tec-nav .navbar-toggle {
  margin-top: 23px;
  margin-bottom: 23px;
}
.tec-nav .navbar-nav > li > a {
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: 'Goldman', cursive;
  font-size: 16px;
  text-align: center;
}
.tec-nav .nav.navbar-nav.navbar-right li > a {
  display: none;
}
.tec-nav .navbar-default .navbar-toggle .icon-bar {
  background-color: #f3df2d;
}
.tec-nav .navbar-default .navbar-toggle {
  border-color: #f3df2d;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #333;
}
.make-content img {
  height: auto;
  width: 100%;
}
.text {
  margin-top: -110px;
  text-align: center;
}
.text h1 {
  font-size: 13px;
}
.btnn a button {
  padding: 6px 27px;
  margin-top: 30px;
}
.tec-footer {
  padding-top: 20px;
}
.f-heading{
  text-align: center;
}
.f-heading .conver{
  text-align: left;
}
.about-b {
  height: auto;
  margin-top: -22px;
  background: url(../images/abt-bg.jpg) 0% 0% / cover no-repeat;
  background-size: cover;
}
.about-b h1 {
  font-size: 20px;
  margin-top: 30px;
}
.about-b .line {
  margin-bottom: 30px;
}
.services h1 {
  font-size: 26px;
}
.policy-content h1 {
  font-size: 20px;
}
.policy-content h2 {
  font-size: 20px;
}

.sizes-page {
  height: auto;
}
.sizes-content h1 {
  font-size: 20px;
}
.sizes-content p {
  font-size: 16px;
}
.cont-nmbr p span {
  font-size: 26px;
}
.cont-nmbr p {
  font-size: 16px;
}
.find h2 {
  font-size: 20px;
}
.how img {
  display: none;
}
.offer {
  margin-top: 0px;
  padding: 40px 0px;
}
.offer-content {
  height: auto;
  margin-bottom: 20px;
}
.content-portion {
  padding: 20px;
  text-align: center;
}
.content-portion h4 {
  font-size: 20px;
}
.content-portion p {
  font-size: 16px;
}
.sizes-content.siz {
  padding-top: 0px;
}
.sizes-page .dvla-main {
  width: 290px;
}
.sizes-page .reg-input-new1 {
  width: 230px;
  font-size: 20px;
}
.last-frm-content {
  padding: 20px;
}
.last-frm-content h1 {
  font-size: 20px;
}
.last-frm-content h2.confirm {
  font-size: 20px;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  position: relative;
  z-index: 111;
}
.thanks-content h1 {
  font-size: 40px;
}
.thanks-content h2 {
  font-size: 20px;
}
.thanks-content .buton .btn-change5 {
  height: 45px;
  width: 200px;
  font-size: 18px;
}
.tec-footer.hoome {
    margin-top: 0px;
}


}

@media screen and (min-width: 768px) and (max-width: 991px){
.tec-nav .navbar-default .navbar-nav > li > a {
  color: #f3df2d;
  font-size: 14px;
  padding: 37px 6px;
}
.make-content img {
  height: auto;
}
.text {
  margin-top: -173px;
}
.text h1 {
  font-size: 29px;
}
.tec-footer {
  padding-top: 0px;
}
.about-b {
  height: auto;
}
.about-b h1 {
  font-size: 30px;
  margin-top: 160px;
}
.sizes-content h1 {
  font-size: 32px;
}
.offer-content {
  height: auto;
  margin-bottom: 20px;
}
.content-portion {
  padding: 20px;
}
.sizes-page {
  height: auto;
}
.thanks-content h1 {
  font-size: 60px;
}
.tec-footer.hoome {
    margin-top: 30px;
}
}


@media screen and (min-width: 1367px) and (max-width: 1900px){
.makes-banner {
    margin-top: -20px;
}
.about-b {
    height: 396px;
}
    
    
    
    
}


