/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {


}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
   .container {
      width: 765px;
      margin: 0 auto;
   }
   .team-tree__container {
      height: 611px;
   }
   .row__block__height {
      height: 251px
   }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
   .container {
      width: 990px;
      margin: 0 auto;
   }
   .team-tree__container {
      height: 752px;
   }
   .row__block__height {
      height: 331px
   }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
   .container {
      width: 1227px;
      margin: 0 auto;
   }
   .team-tree__container {
      height: 921px;
   }
   .row__block__height {
      height: 421px
   }
}